473,473 Members | 2,174 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

AJAX extended radiobuttonlist unselects selected value in popup

SAL
hello,
I'm using a radiobuttonlist in an updatepanel in an item template in a
Gridview control. I'm populating the radiobuttonlist in the RowDataBound
event. I have the control toolkit registered in the page and I've got code
to get the selected value from it in the
Radiobuttonlist_SelectedIndexChanged event.
The code in there is:

Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object, ByVal
e As System.EventArgs)
If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
Dim s As String = rblFMSValue.SelectedValue
Dim pos As Integer = s.IndexOf(": ")
s = s.Substring(pos + 2)
PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
End If
End Sub

But, when the code block get executed, the SelectedValue of the RBL is
always an empty string so the code within the if block never executes. It
never dismisses the popup after the user selects an item and unselects the
item selected (from the user's point of view). I have the Autopostback
property set to True and the EnableViewState property set to True. What
could the issue be?

S
Sep 5 '08 #1
6 2622
Hi Steve,

As you said:
==================================================
I'm populating the radiobuttonlist in the RowDataBound event
==================================================
Could you tell me how do you do this? Is the RadioButtonList control
defined in the aspx or created dynamically in the RowDataBound event
handler?
In addition, where do you add the event handler? Please note if it's done
in the RowDataBound event handler the SelectedIndexChanged event handler
will not fire because RowDataBound event doesn't fire on postback (if
you're using DataSource control or bind the GridView on the first page
load, and not call GridView.DataBind() method on postback explicitly). Thus
the SelectedIndexChanged event handler is not attached to the
RadioButtonList control and will not fire at all.

If my guess above is correct you can attach the event handler in the inline
code
<asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
runat="server"
onselectedindexchanged="rblFMSValue_SelectedIndexC hanged">

If my guess is wrong please send me a demo project that can reproduce this
problem. I'll have a look and investigate.

Regards,
Allen Chen

--------------------
| From: "SAL" <SA*@nospam.nospam>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

Sep 8 '08 #2
Hi Steve,

As you said:
==================================================
I'm populating the radiobuttonlist in the RowDataBound event
==================================================
Could you tell me how do you do this? Is the RadioButtonList control
defined in the aspx or created dynamically in the RowDataBound event
handler?
In addition, where do you add the event handler? Please note if it's done
in the RowDataBound event handler the SelectedIndexChanged event handler
will not fire because RowDataBound event doesn't fire on postback (if
you're using DataSource control or bind the GridView on the first page
load, and not call GridView.DataBind() method on postback explicitly). Thus
the SelectedIndexChanged event handler is not attached to the
RadioButtonList control and will not fire at all.

If my guess above is correct you can attach the event handler in the inline
code
<asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
runat="server"
onselectedindexchanged="rblFMSValue_SelectedIndexC hanged">

If my guess is wrong please send me a demo project that can reproduce this
problem. I'll have a look and investigate.

Regards,
Allen Chen

--------------------
| From: "SAL" <SA*@nospam.nospam>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

Sep 8 '08 #3
Hi Steve,

Have you solved this problem?

Regards,
Allen Chen
Microsoft Online Community Support
--------------------
| From: "SAL" <SA*@nospam.nospam>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

Sep 10 '08 #4
SAL
Actually, I gave up on it since our company is still on IE6 and I can't
force an upgrade. So, until we get to IE 7, it doesn't look like I can do
much AJAX.

S

"Allen Chen [MSFT]" <v-******@online.microsoft.comwrote in message
news:RW**************@TK2MSFTNGHUB02.phx.gbl...
Hi Steve,

Have you solved this problem?

Regards,
Allen Chen
Microsoft Online Community Support
--------------------
| From: "SAL" <SA*@nospam.nospam>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes.
It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

Sep 17 '08 #5
SAL
Hi Allen, I had the radiobuttonlist defined in the page as such along with
the event handler:
<asp:Panel ID="panFMSValue" runat="server" CssClass="popupControl">
<asp:UpdatePanel ID="upFMSValue" runat="server"
UpdateMode="Conditional">
<ContentTemplate>
<asp:RadioButtonList
ID="rblFMSValue" runat="server"
AutoPostBack="true"
OnSelectedIndexChanged="rblFMSValue_SelectedIndexC hanged"
Width="144px" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Panel>
<ajax:PopupControlExtender ID="PopupControlExtender1"
runat="server"
TargetControlID="txtFMSValue"
PopupControlID="panFMSValue" CommitProperty="value"
CommitScript="e.value;" EnableViewState="False">
</ajax:PopupControlExtender>

However, I did, regrettably, forgo this approach due to the AJAX/IE6
incompatibilities.

S

"Allen Chen [MSFT]" <v-******@online.microsoft.comwrote in message
news:Dh**************@TK2MSFTNGHUB02.phx.gbl...
Hi Steve,

As you said:
==================================================
I'm populating the radiobuttonlist in the RowDataBound event
==================================================
Could you tell me how do you do this? Is the RadioButtonList control
defined in the aspx or created dynamically in the RowDataBound event
handler?
In addition, where do you add the event handler? Please note if it's done
in the RowDataBound event handler the SelectedIndexChanged event handler
will not fire because RowDataBound event doesn't fire on postback (if
you're using DataSource control or bind the GridView on the first page
load, and not call GridView.DataBind() method on postback explicitly).
Thus
the SelectedIndexChanged event handler is not attached to the
RadioButtonList control and will not fire at all.

If my guess above is correct you can attach the event handler in the
inline
code
<asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
runat="server"
onselectedindexchanged="rblFMSValue_SelectedIndexC hanged">

If my guess is wrong please send me a demo project that can reproduce this
problem. I'll have a look and investigate.

Regards,
Allen Chen

--------------------
| From: "SAL" <SA*@nospam.nospam>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes.
It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

Sep 18 '08 #6
Hi Steve,

I'm sorry to hear that. Are there any incompatibility issues you met with
other than the combobox&other elements overlay issue? The overlay issue, I
think, can be worked around by expanding the width of the column of the
<table>.

If you decide to use AJAX again please feel free to ask questions here. I'm
willing to work with you to solve any problems.

Regards,
Allen Chen
Microsoft Online Support
--------------------
| From: "SAL" <SA*@nospam.nospam>
| References: <uG**************@TK2MSFTNGP06.phx.gbl>
<Dh**************@TK2MSFTNGHUB02.phx.gbl>
| Subject: Re: AJAX extended radiobuttonlist unselects selected value in
popup
| Date: Thu, 18 Sep 2008 11:22:06 -0700
| Lines: 113
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350
| Message-ID: <#S**************@TK2MSFTNGP05.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host183086.clark.wa.gov 64.4.183.86
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP05.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:76329
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi Allen, I had the radiobuttonlist defined in the page as such along
with
| the event handler:
| <asp:Panel ID="panFMSValue" runat="server" CssClass="popupControl">
| <asp:UpdatePanel ID="upFMSValue" runat="server"
| UpdateMode="Conditional">
| <ContentTemplate>
| <asp:RadioButtonList
| ID="rblFMSValue" runat="server"
| AutoPostBack="true"
|
OnSelectedIndexChanged="rblFMSValue_SelectedIndexC hanged"
| Width="144px" />
| </ContentTemplate>
| </asp:UpdatePanel>
| </asp:Panel>
| <ajax:PopupControlExtender ID="PopupControlExtender1"
| runat="server"
| TargetControlID="txtFMSValue"
| PopupControlID="panFMSValue" CommitProperty="value"
| CommitScript="e.value;" EnableViewState="False">
| </ajax:PopupControlExtender>
|
| However, I did, regrettably, forgo this approach due to the AJAX/IE6
| incompatibilities.
|
| S
|
| "Allen Chen [MSFT]" <v-******@online.microsoft.comwrote in message
| news:Dh**************@TK2MSFTNGHUB02.phx.gbl...
| Hi Steve,
| >
| As you said:
| ==================================================
| I'm populating the radiobuttonlist in the RowDataBound event
| ==================================================
| Could you tell me how do you do this? Is the RadioButtonList control
| defined in the aspx or created dynamically in the RowDataBound event
| handler?
| In addition, where do you add the event handler? Please note if it's
done
| in the RowDataBound event handler the SelectedIndexChanged event handler
| will not fire because RowDataBound event doesn't fire on postback (if
| you're using DataSource control or bind the GridView on the first page
| load, and not call GridView.DataBind() method on postback explicitly).
| Thus
| the SelectedIndexChanged event handler is not attached to the
| RadioButtonList control and will not fire at all.
| >
| If my guess above is correct you can attach the event handler in the
| inline
| code
| <asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
| runat="server"
| onselectedindexchanged="rblFMSValue_SelectedIndexC hanged">
| >
| If my guess is wrong please send me a demo project that can reproduce
this
| problem. I'll have a look and investigate.
| >
| Regards,
| Allen Chen
| >
| --------------------
| | From: "SAL" <SA*@nospam.nospam>
| | Subject: AJAX extended radiobuttonlist unselects selected value in
popup
| | Date: Fri, 5 Sep 2008 12:11:09 -0700
| | Lines: 28
| | X-Priority: 3
| | X-MSMail-Priority: Normal
| | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| | X-RFC2646: Format=Flowed; Original
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| | Message-ID: <uG**************@TK2MSFTNGP06.phx.gbl>
| | Newsgroups: microsoft.public.dotnet.framework.aspnet
| | NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP06.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl
| microsoft.public.dotnet.framework.aspnet:75359
| | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| |
| | hello,
| | I'm using a radiobuttonlist in an updatepanel in an item template in a
| | Gridview control. I'm populating the radiobuttonlist in the
RowDataBound
| | event. I have the control toolkit registered in the page and I've got
| code
| | to get the selected value from it in the
| | Radiobuttonlist_SelectedIndexChanged event.
| | The code in there is:
| |
| | Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
| ByVal
| | e As System.EventArgs)
| | If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| | Dim s As String = rblFMSValue.SelectedValue
| | Dim pos As Integer = s.IndexOf(": ")
| | s = s.Substring(pos + 2)
| |
PopupControlExtender.GetProxyForCurrentPopup(Me.Pa ge).Commit(s)
| | End If
| | End Sub
| |
| | But, when the code block get executed, the SelectedValue of the RBL is
| | always an empty string so the code within the if block never
executes.
| It
| | never dismisses the popup after the user selects an item and unselects
| the
| | item selected (from the user's point of view). I have the Autopostback
| | property set to True and the EnableViewState property set to True.
What
| | could the issue be?
| |
| | S
| |
| |
| |
| >
|
|
|

Sep 19 '08 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: William LaMartin | last post by:
If I create a RadioButtonList with, say, two items, then after the page loads and I select one of the items and then click on a button whose click event contains some code to display the...
5
by: DotNetGruven | last post by:
Anyone have any pointers on how to set the Value and Selected attributes in a ListItem in a RadioButtonList that is in a DataGrid? Here's what I have ------DataGrid------ -- BoundColumn 0 --...
0
by: Jay | last post by:
I have a radiobuttonlist like so <asp:RadioButtonList id=radType RepeatDirection="Horizontal" cellpadding="10" cellspacing="0" runat="server"><asp:ListItem value="Something1"><font...
4
by: Emil | last post by:
Can somebody tell me what would be the syntax for having an if statement and setting the selected index of a radiobuttonlist? This is my first project using ASP.net and I use C#. I have a repeater...
4
by: juststarter | last post by:
Hello, I have an aspx file where i've put a placeholder element. On load (page_load) i create dynamically an html table which contains a checkbox and a radiobuttonlist in each tablerow . The...
5
by: Mukesh | last post by:
Hi i want to use AJAX.net in my Existing Application I have already installed the ajax .net ..net 3.0 and using VS 2005 in the old application i have added a new web form then script manager...
4
by: Rob Meade | last post by:
Hi all, I played with my first bit of AJAX the other week and was pleasantly surprised that I achieved my goal..now I'd like to try something else.. Question... If I have an updatePanel,...
0
by: rcoco | last post by:
Hi, Ihave a datagrid that Insert data in some rows. One column has RadioButtonList that contains three Items. But When I select one radiobuton, insert data in other columns and select insert data...
3
by: Mukesh | last post by:
HI all I have created a user ctrl for user info. On which i have used some asp ctrls, .net Ajax (Atlas) Ctrls and validation as described below Name TxtBox1(RequiedFieldValidator,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.