Ask a Question related to ASP.NET General, Design and Development.
-
Edmilson #1
Checkbox in ListBox
Hello All
I have a Datalist where each "Item" contains a checkbox (among other
things). I want the user to be able to click on one or more
checkboxes, click the Send button, and have something done to the
Items that had the check boxes selected. Seems like a common task. I
was easily able to do something like this in classic ASP. But I'm
lost in ASP.NET.
I´m using VB and I hope you can point me in the right direction...
tks all
troqui
Edmilson Guest
-
Checkbox inside listbox
Hi all I would like to know whether anybody has any ideas about how to create a listbox with checkbox appearing besdies all the option text. I... -
Howto bind CheckBox to the datagrid/ Then update the database field when the checkbox is clicked.
I am trying to update the database field when the checkbox is clicked. I am trying to modified the following solution but.. got stuck on the... -
click listbox and refresh another listbox
Can someone guide me to a resource on building set of drill-down listboxes? Basically I want to have 4 listboxes. The first starts out with... -
Item label displays as "," when moving from listbox to listbox
I have 2 listboxes: "lb_unselected" and "lb_selected". The first thing in the actions is loop through an array populating these two listboxes. ... -
now desparate! - 1st listbox contents disappears when 2nd listbox appears?
On 23 Jun 2003 12:57:45 -0700, KathyBurke40@attbi.com (KathyB) wrote: Its been a while since you posted but I will answer anyway. The problem... -
Edmilson #2
Re: Checkbox in ListBox
Sorry, the correct subject should be Checkbox in Datalist
"Edmilson" <troqui@padtec.com.br> escreveu na mensagem
news:Oii7qJKPDHA.1612@TK2MSFTNGP11.phx.gbl...> Hello All
>
> I have a Datalist where each "Item" contains a checkbox (among other
> things). I want the user to be able to click on one or more
> checkboxes, click the Send button, and have something done to the
> Items that had the check boxes selected. Seems like a common task. I
> was easily able to do something like this in classic ASP. But I'm
> lost in ASP.NET.
>
> I´m using VB and I hope you can point me in the right direction...
>
> tks all
> troqui
>
>
Edmilson Guest
-
Charlie Nilsson [MSFT] #3
Re: Checkbox in ListBox
You might try something like this, in your event handler or IsPostBack
section of your Page_Load...
For Each obj In dlist.Items
If obj.GetType Is System.Web.UI.WebControls.CheckBox Then
checkbox = CType(obj,
System.Web.UI.WebControls.CheckBox)
If checkbox.Checked Then
Response.Write("You checked #" & checkbox.ID)
End If
End If
Next
Hope that helps.
Charlie Nilsson [msft]
Visual Studio Update
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
[url]http://www.microsoft.com/info/cpyright.htm[/url]
Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
--------------------> From: "Edmilson" <troqui@padtec.com.br>
> References: <Oii7qJKPDHA.1612@TK2MSFTNGP11.phx.gbl>
> Subject: Re: Checkbox in ListBox
> Date: Fri, 27 Jun 2003 08:56:30 -0300
> Lines: 21
> X-Priority: 3
> X-MSMail-Priority: Normal
> X-Newsreader: Microsoft Outlook Express 6.00.2600.0000
> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
> Message-ID: <OSBi#MKPDHA.2224@TK2MSFTNGP10.phx.gbl>
> Newsgroups: microsoft.public.dotnet.framework.aspnet
> NNTP-Posting-Host: apolo.padtec.com.br 200.228.158.130
> Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
> Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:155398
> X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
> Sorry, the correct subject should be Checkbox in Datalist
>
> "Edmilson" <troqui@padtec.com.br> escreveu na mensagem
> news:Oii7qJKPDHA.1612@TK2MSFTNGP11.phx.gbl...>> > Hello All
> >
> > I have a Datalist where each "Item" contains a checkbox (among other
> > things). I want the user to be able to click on one or more
> > checkboxes, click the Send button, and have something done to the
> > Items that had the check boxes selected. Seems like a common task. I
> > was easily able to do something like this in classic ASP. But I'm
> > lost in ASP.NET.
> >
> > I´m using VB and I hope you can point me in the right direction...
> >
> > tks all
> > troqui
> >
> >
>
>Charlie Nilsson [MSFT] Guest



Reply With Quote

