RadioButtonList, Web User Control, Firefox, IE | | |
Hallo,
I have a radiobuttonlist control that is added on a custom Web User Control.
This control has a property that exposes the SelectedIndex property of the
embedded radiobuttonlist.
When running this in IE, behaviour is as I would expect it. If I select an
item and do a postback, the page remembers my selection when reloading, and
the SelectedIndex property of my control returns the correct value.
When running this in Firefox 3, I always get a -1 for the SelectedIndex
prop, and the page does not remember my selection when reloading.
If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
expected. Only fails in Firefox when the control is on a custom Web User
Control.
Below I will paste the aspx, ascx, and their respective code behind files.
..Net Framework 3.5. Any advice would be appreciated.
Thanks
Paul
1. FF.aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
Inherits="FF" %>
<%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
</form>
</body>
</html>
2. FF.aspx.vb
Partial Class FF
Inherits System.Web.UI.Page
Protected WithEvents rbl As test
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
rbl.ID = "rblID99"
PlaceHolder1.Controls.Add(rbl)
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button1.Click
Check(Me)
End Sub
Sub Check(ByVal _control As Control)
If _control.ID IsNot Nothing Then
If _control.GetType.ToString =
"System.Web.UI.WebControls.RadioButtonList" Then
Response.Write(CType(_control,
RadioButtonList).SelectedIndex & " - selected index<br/>")
If CType(_control, RadioButtonList).SelectedIndex < 0 Then
MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
"Questions.")
End If
End If
End If
If _control.HasControls Then
For Each ctrl As Control In _control.Controls
Check(ctrl)
Next
End If
End Sub
End Class
3. TEST.ascx
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="TEST.ascx.vb"
Inherits="TEST" Classname="TEST"%>
<p style="width: 500px">
<asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
</p>
<p style="width: 500px">
<asp:RadioButtonList ID="Answer_RBL" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:RadioButtonList>
</p>
</p>
4. TEST.ascx.vb
Partial Class TEST
Inherits System.Web.UI.UserControl
Public ReadOnly Property SelectedIndex() As Integer
Get
Return Answer_RBL.SelectedIndex
End Get
End Property
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
End Class | | | | re: RadioButtonList, Web User Control, Firefox, IE
its a bug in IE, it should send -1 also.
you are loading the user control too late in the page lifecycle, so that it
does not exist when postback data is applied. the proper place to load
dynamic controls is in the CreateChildControls method (which was designed for
this, or OnInit in a pinch)
-- bruce (sqlwork.com)
"Paul" wrote: Quote:
Hallo,
>
I have a radiobuttonlist control that is added on a custom Web User Control.
This control has a property that exposes the SelectedIndex property of the
embedded radiobuttonlist.
>
When running this in IE, behaviour is as I would expect it. If I select an
item and do a postback, the page remembers my selection when reloading, and
the SelectedIndex property of my control returns the correct value.
>
When running this in Firefox 3, I always get a -1 for the SelectedIndex
prop, and the page does not remember my selection when reloading.
>
If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
expected. Only fails in Firefox when the control is on a custom Web User
Control.
>
Below I will paste the aspx, ascx, and their respective code behind files.
.Net Framework 3.5. Any advice would be appreciated.
>
Thanks
Paul
>
1. FF.aspx
>
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
Inherits="FF" %>
>
<%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
>
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
</form>
</body>
</html>
>
2. FF.aspx.vb
>
Partial Class FF
Inherits System.Web.UI.Page
Protected WithEvents rbl As test
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
rbl.ID = "rblID99"
PlaceHolder1.Controls.Add(rbl)
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button1.Click
Check(Me)
End Sub
Sub Check(ByVal _control As Control)
If _control.ID IsNot Nothing Then
If _control.GetType.ToString =
"System.Web.UI.WebControls.RadioButtonList" Then
Response.Write(CType(_control,
RadioButtonList).SelectedIndex & " - selected index<br/>")
If CType(_control, RadioButtonList).SelectedIndex < 0 Then
MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
"Questions.")
End If
End If
End If
If _control.HasControls Then
For Each ctrl As Control In _control.Controls
Check(ctrl)
Next
End If
End Sub
End Class
>
3. TEST.ascx
>
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="TEST.ascx.vb"
Inherits="TEST" Classname="TEST"%>
>
<p style="width: 500px">
>
<asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
</p>
<p style="width: 500px">
<asp:RadioButtonList ID="Answer_RBL" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:RadioButtonList>
</p>
</p>
>
4. TEST.ascx.vb
>
Partial Class TEST
Inherits System.Web.UI.UserControl
Public ReadOnly Property SelectedIndex() As Integer
Get
Return Answer_RBL.SelectedIndex
End Get
End Property
>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
End Class
>
| | | | re: RadioButtonList, Web User Control, Firefox, IE
Hi,
moving the code to create the control to OnInit or CreateChildControls
doesn't change the thing, ASP.NET is able to load postback data for controls
loaded in Page_Load (postback data loading happens in two steps once before
and once after Load - you can cofirm that by checking page trace).
By the way, for testing purposes maybe OK, but don't use MSgBox in ASp.NET
in production as it shows the MSgBoxes only on the server machine...
The issue itself relates that you add vbTab to the ListItem's Text in code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
Remove the vbTab appendings and you'll note the thing starts to work just
fine (with control loaded in Page_Load, although in practise doing it in
Init or CreateChildControls eases certain things in the long run.
So I suppose it relates to other browser dealing with the tab...
--
Teemu Keiski
AspInsider, ASP.NET MVP http://blogs.aspadvice.com/joteke http://teemukeiski.net
"Paul" <vis@nospam.nospamwrote in message
news:6281D426-7F77-46DD-AFA8-820028733E32@microsoft.com... Quote:
Hallo,
>
I have a radiobuttonlist control that is added on a custom Web User
Control.
This control has a property that exposes the SelectedIndex property of the
embedded radiobuttonlist.
>
When running this in IE, behaviour is as I would expect it. If I select an
item and do a postback, the page remembers my selection when reloading,
and
the SelectedIndex property of my control returns the correct value.
>
When running this in Firefox 3, I always get a -1 for the SelectedIndex
prop, and the page does not remember my selection when reloading.
>
If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
expected. Only fails in Firefox when the control is on a custom Web User
Control.
>
Below I will paste the aspx, ascx, and their respective code behind files.
.Net Framework 3.5. Any advice would be appreciated.
>
Thanks
Paul
>
1. FF.aspx
>
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
Inherits="FF" %>
>
<%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
>
<asp:PlaceHolder ID="PlaceHolder1"
runat="server"></asp:PlaceHolder>
>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
</form>
</body>
</html>
>
2. FF.aspx.vb
>
Partial Class FF
Inherits System.Web.UI.Page
Protected WithEvents rbl As test
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
rbl.ID = "rblID99"
PlaceHolder1.Controls.Add(rbl)
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button1.Click
Check(Me)
End Sub
Sub Check(ByVal _control As Control)
If _control.ID IsNot Nothing Then
If _control.GetType.ToString =
"System.Web.UI.WebControls.RadioButtonList" Then
Response.Write(CType(_control,
RadioButtonList).SelectedIndex & " - selected index<br/>")
If CType(_control, RadioButtonList).SelectedIndex < 0 Then
MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
"Questions.")
End If
End If
End If
If _control.HasControls Then
For Each ctrl As Control In _control.Controls
Check(ctrl)
Next
End If
End Sub
End Class
>
3. TEST.ascx
>
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="TEST.ascx.vb"
Inherits="TEST" Classname="TEST"%>
>
<p style="width: 500px">
>
<asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
</p>
<p style="width: 500px">
<asp:RadioButtonList ID="Answer_RBL" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:RadioButtonList>
</p>
</p>
>
4. TEST.ascx.vb
>
Partial Class TEST
Inherits System.Web.UI.UserControl
Public ReadOnly Property SelectedIndex() As Integer
Get
Return Answer_RBL.SelectedIndex
End Get
End Property
>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
End Class
>
| | | | re: RadioButtonList, Web User Control, Firefox, IE
To add, the issue still occurred in my test case even when creating the
control in CreateChildControls, when ListItem had vbTabs.
Teemu
"Teemu Keiski" <joteke@aspalliance.comwrote in message
news:%23rhEywj0IHA.3776@TK2MSFTNGP02.phx.gbl... Quote:
Hi,
>
moving the code to create the control to OnInit or CreateChildControls
doesn't change the thing, ASP.NET is able to load postback data for
controls loaded in Page_Load (postback data loading happens in two steps
once before and once after Load - you can cofirm that by checking page
trace).
>
By the way, for testing purposes maybe OK, but don't use MSgBox in ASp.NET
in production as it shows the MSgBoxes only on the server machine...
>
The issue itself relates that you add vbTab to the ListItem's Text in
code:
>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
>
Remove the vbTab appendings and you'll note the thing starts to work just
fine (with control loaded in Page_Load, although in practise doing it in
Init or CreateChildControls eases certain things in the long run.
>
So I suppose it relates to other browser dealing with the tab...
>
--
Teemu Keiski
AspInsider, ASP.NET MVP http://blogs.aspadvice.com/joteke http://teemukeiski.net
>
>
>
>
>
"Paul" <vis@nospam.nospamwrote in message
news:6281D426-7F77-46DD-AFA8-820028733E32@microsoft.com... Quote:
>Hallo,
>>
>I have a radiobuttonlist control that is added on a custom Web User
>Control.
>This control has a property that exposes the SelectedIndex property of
>the
>embedded radiobuttonlist.
>>
>When running this in IE, behaviour is as I would expect it. If I select
>an
>item and do a postback, the page remembers my selection when reloading,
>and
>the SelectedIndex property of my control returns the correct value.
>>
>When running this in Firefox 3, I always get a -1 for the SelectedIndex
>prop, and the page does not remember my selection when reloading.
>>
>If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
>expected. Only fails in Firefox when the control is on a custom Web User
>Control.
>>
>Below I will paste the aspx, ascx, and their respective code behind
>files.
>.Net Framework 3.5. Any advice would be appreciated.
>>
>Thanks
>Paul
>>
>1. FF.aspx
>>
><%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
>Inherits="FF" %>
>>
><%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
>>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>
><html xmlns="http://www.w3.org/1999/xhtml">
><head runat="server">
> <title>Untitled Page</title>
></head>
><body>
> <form id="form1" runat="server">
> <div>
>>
> <asp:PlaceHolder ID="PlaceHolder1"
>runat="server"></asp:PlaceHolder>
>>
> </div>
> <asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
> </form>
></body>
></html>
>>
>2. FF.aspx.vb
>>
>Partial Class FF
> Inherits System.Web.UI.Page
> Protected WithEvents rbl As test
> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
>System.EventArgs) Handles Me.Load
> rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
> rbl.ID = "rblID99"
> PlaceHolder1.Controls.Add(rbl)
> End Sub
> Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
>System.EventArgs) Handles Button1.Click
> Check(Me)
> End Sub
> Sub Check(ByVal _control As Control)
> If _control.ID IsNot Nothing Then
> If _control.GetType.ToString =
>"System.Web.UI.WebControls.RadioButtonList" Then
> Response.Write(CType(_control,
>RadioButtonList).SelectedIndex & " - selected index<br/>")
> If CType(_control, RadioButtonList).SelectedIndex < 0 Then
> MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
>"Questions.")
> End If
> End If
> End If
> If _control.HasControls Then
> For Each ctrl As Control In _control.Controls
> Check(ctrl)
> Next
> End If
> End Sub
>End Class
>>
>3. TEST.ascx
>>
><%@ Control Language="VB" AutoEventWireup="false" CodeFile="TEST.ascx.vb"
>Inherits="TEST" Classname="TEST"%>
>>
><p style="width: 500px">
>>
> <asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
></p>
><p style="width: 500px">
> <asp:RadioButtonList ID="Answer_RBL" runat="server">
> <asp:ListItem></asp:ListItem>
> <asp:ListItem></asp:ListItem>
> </asp:RadioButtonList>
></p>
></p>
>>
>4. TEST.ascx.vb
>>
>Partial Class TEST
> Inherits System.Web.UI.UserControl
> Public ReadOnly Property SelectedIndex() As Integer
> Get
> Return Answer_RBL.SelectedIndex
> End Get
> End Property
>>
> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
>System.EventArgs) Handles Me.Load
> Question_TXT.Text = "Pick One"
> Answer_RBL.Items(0).Text = vbTab & "First"
> Answer_RBL.Items(1).Text = vbTab & "Second"
> End Sub
>End Class
>>
>
>
| | | | re: RadioButtonList, Web User Control, Firefox, IE
Thanks for your Teemu's informative inputs.
Seems the problem is related to the firefox 3's handling on <select>
options which contains tab chars. BTW, I agree that "OnInit" and
"CreateChildControls" are the prefered place for dynamic controls though it
may not address the problem here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at: msdnmg@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
-------------------- Quote:
>From: "Teemu Keiski" <joteke@aspalliance.com>
>References: <6281D426-7F77-46DD-AFA8-820028733E32@microsoft.com>
<#rhEywj0IHA.3776@TK2MSFTNGP02.phx.gbl> Quote:
>Subject: Re: RadioButtonList, Web User Control, Firefox, IE
>Date: Thu, 19 Jun 2008 21:48:46 +0300
Quote:
>
>To add, the issue still occurred in my test case even when creating the
>control in CreateChildControls, when ListItem had vbTabs.
>
>Teemu
>
>
>"Teemu Keiski" <joteke@aspalliance.comwrote in message
>news:%23rhEywj0IHA.3776@TK2MSFTNGP02.phx.gbl... Quote:
>Hi,
>>
>moving the code to create the control to OnInit or CreateChildControls
>doesn't change the thing, ASP.NET is able to load postback data for
>controls loaded in Page_Load (postback data loading happens in two steps
>once before and once after Load - you can cofirm that by checking page
>trace).
>>
>By the way, for testing purposes maybe OK, but don't use MSgBox in
ASp.NET Quote: Quote:
>in production as it shows the MSgBoxes only on the server machine...
>>
>The issue itself relates that you add vbTab to the ListItem's Text in
>code:
>>
> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
>System.EventArgs) Handles Me.Load
> Question_TXT.Text = "Pick One"
> Answer_RBL.Items(0).Text = vbTab & "First"
> Answer_RBL.Items(1).Text = vbTab & "Second"
> End Sub
>>
>Remove the vbTab appendings and you'll note the thing starts to work
just Quote: Quote:
>fine (with control loaded in Page_Load, although in practise doing it in
>Init or CreateChildControls eases certain things in the long run.
>>
>So I suppose it relates to other browser dealing with the tab...
>>
>--
>Teemu Keiski
>AspInsider, ASP.NET MVP
> http://blogs.aspadvice.com/joteke
> http://teemukeiski.net
>>
>>
>>
>>
>>
>"Paul" <vis@nospam.nospamwrote in message
>news:6281D426-7F77-46DD-AFA8-820028733E32@microsoft.com... Quote:
>>Hallo,
>>>
>>I have a radiobuttonlist control that is added on a custom Web User
>>Control.
>>This control has a property that exposes the SelectedIndex property of
>>the
>>embedded radiobuttonlist.
>>>
>>When running this in IE, behaviour is as I would expect it. If I select
>>an
>>item and do a postback, the page remembers my selection when reloading,
>>and
>>the SelectedIndex property of my control returns the correct value.
>>>
>>When running this in Firefox 3, I always get a -1 for the SelectedIndex
>>prop, and the page does not remember my selection when reloading.
>>>
>>If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
>>expected. Only fails in Firefox when the control is on a custom Web User
>>Control.
>>>
>>Below I will paste the aspx, ascx, and their respective code behind
>>files.
>>.Net Framework 3.5. Any advice would be appreciated.
>>>
>>Thanks
>>Paul
>>>
>>1. FF.aspx
>>>
>><%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
>>Inherits="FF" %>
>>>
>><%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
>>>
>><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>>
>><html xmlns="http://www.w3.org/1999/xhtml">
>><head runat="server">
>> <title>Untitled Page</title>
>></head>
>><body>
>> <form id="form1" runat="server">
>> <div>
>>>
>> <asp:PlaceHolder ID="PlaceHolder1"
>>runat="server"></asp:PlaceHolder>
>>>
>> </div>
>> <asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
>> </form>
>></body>
>></html>
>>>
>>2. FF.aspx.vb
>>>
>>Partial Class FF
>> Inherits System.Web.UI.Page
>> Protected WithEvents rbl As test
>> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
>>System.EventArgs) Handles Me.Load
>> rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
>> rbl.ID = "rblID99"
>> PlaceHolder1.Controls.Add(rbl)
>> End Sub
>> Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
>>System.EventArgs) Handles Button1.Click
>> Check(Me)
>> End Sub
>> Sub Check(ByVal _control As Control)
>> If _control.ID IsNot Nothing Then
>> If _control.GetType.ToString =
>>"System.Web.UI.WebControls.RadioButtonList" Then
>> Response.Write(CType(_control,
>>RadioButtonList).SelectedIndex & " - selected index<br/>")
>> If CType(_control, RadioButtonList).SelectedIndex < 0
Then Quote: Quote: Quote:
>> MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
>>"Questions.")
>> End If
>> End If
>> End If
>> If _control.HasControls Then
>> For Each ctrl As Control In _control.Controls
>> Check(ctrl)
>> Next
>> End If
>> End Sub
>>End Class
>>>
>>3. TEST.ascx
>>>
>><%@ Control Language="VB" AutoEventWireup="false"
CodeFile="TEST.ascx.vb" Quote: Quote: Quote:
>>Inherits="TEST" Classname="TEST"%>
>>>
>><p style="width: 500px">
>>>
>> <asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
>></p>
>><p style="width: 500px">
>> <asp:RadioButtonList ID="Answer_RBL" runat="server">
>> <asp:ListItem></asp:ListItem>
>> <asp:ListItem></asp:ListItem>
>> </asp:RadioButtonList>
>></p>
>></p>
>>>
>>4. TEST.ascx.vb
>>>
>>Partial Class TEST
>> Inherits System.Web.UI.UserControl
>> Public ReadOnly Property SelectedIndex() As Integer
>> Get
>> Return Answer_RBL.SelectedIndex
>> End Get
>> End Property
>>>
>> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
>>System.EventArgs) Handles Me.Load
>> Question_TXT.Text = "Pick One"
>> Answer_RBL.Items(0).Text = vbTab & "First"
>> Answer_RBL.Items(1).Text = vbTab & "Second"
>> End Sub
>>End Class
>>>
>>
>>
>
>
>
| | | | re: RadioButtonList, Web User Control, Firefox, IE
Hi Teemu,
Fantastic. So simple, and I spent so much time trying to track this down.
Your help is appreciated. Thanks as well Bruce and Steven.
By the way, in the sample I load the controls in the Page Load event, but in
my actual page I load it in PreInit.
Thanks again
Paul
"Teemu Keiski" wrote: Quote:
Hi,
>
moving the code to create the control to OnInit or CreateChildControls
doesn't change the thing, ASP.NET is able to load postback data for controls
loaded in Page_Load (postback data loading happens in two steps once before
and once after Load - you can cofirm that by checking page trace).
>
By the way, for testing purposes maybe OK, but don't use MSgBox in ASp.NET
in production as it shows the MSgBoxes only on the server machine...
>
The issue itself relates that you add vbTab to the ListItem's Text in code:
>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
>
Remove the vbTab appendings and you'll note the thing starts to work just
fine (with control loaded in Page_Load, although in practise doing it in
Init or CreateChildControls eases certain things in the long run.
>
So I suppose it relates to other browser dealing with the tab...
>
--
Teemu Keiski
AspInsider, ASP.NET MVP http://blogs.aspadvice.com/joteke http://teemukeiski.net
>
>
>
>
>
"Paul" <vis@nospam.nospamwrote in message
news:6281D426-7F77-46DD-AFA8-820028733E32@microsoft.com... Quote:
Hallo,
I have a radiobuttonlist control that is added on a custom Web User
Control.
This control has a property that exposes the SelectedIndex property of the
embedded radiobuttonlist.
When running this in IE, behaviour is as I would expect it. If I select an
item and do a postback, the page remembers my selection when reloading,
and
the SelectedIndex property of my control returns the correct value.
When running this in Firefox 3, I always get a -1 for the SelectedIndex
prop, and the page does not remember my selection when reloading.
If I add a radiobuttonlist directly on to an ASPX page, behaviour is as
expected. Only fails in Firefox when the control is on a custom Web User
Control.
Below I will paste the aspx, ascx, and their respective code behind files.
.Net Framework 3.5. Any advice would be appreciated.
Thanks
Paul
1. FF.aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="FF.aspx.vb"
Inherits="FF" %>
<%@ Register Src="TEST.ascx" TagName="TESTcontrol" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:PlaceHolder ID="PlaceHolder1"
runat="server"></asp:PlaceHolder>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" Width="55px" />
</form>
</body>
</html>
2. FF.aspx.vb
Partial Class FF
Inherits System.Web.UI.Page
Protected WithEvents rbl As test
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
rbl = CType(Me.LoadControl("TEST.ascx"), TEST)
rbl.ID = "rblID99"
PlaceHolder1.Controls.Add(rbl)
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button1.Click
Check(Me)
End Sub
Sub Check(ByVal _control As Control)
If _control.ID IsNot Nothing Then
If _control.GetType.ToString =
"System.Web.UI.WebControls.RadioButtonList" Then
Response.Write(CType(_control,
RadioButtonList).SelectedIndex & " - selected index<br/>")
If CType(_control, RadioButtonList).SelectedIndex < 0 Then
MsgBox("Not checked.", MsgBoxStyle.ApplicationModal,
"Questions.")
End If
End If
End If
If _control.HasControls Then
For Each ctrl As Control In _control.Controls
Check(ctrl)
Next
End If
End Sub
End Class
3. TEST.ascx
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="TEST.ascx.vb"
Inherits="TEST" Classname="TEST"%>
<p style="width: 500px">
<asp:Label ID="Question_TXT" runat="server">Q</asp:Label>
</p>
<p style="width: 500px">
<asp:RadioButtonList ID="Answer_RBL" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:RadioButtonList>
</p>
</p>
4. TEST.ascx.vb
Partial Class TEST
Inherits System.Web.UI.UserControl
Public ReadOnly Property SelectedIndex() As Integer
Get
Return Answer_RBL.SelectedIndex
End Get
End Property
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Question_TXT.Text = "Pick One"
Answer_RBL.Items(0).Text = vbTab & "First"
Answer_RBL.Items(1).Text = vbTab & "Second"
End Sub
End Class
>
>
>
|  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,510 network members.
|