Click here to Skip to main content
15,917,702 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionNeed to make a string's state avaliable from a web page to a custom control. Pin
Steve Holdorf8-May-08 10:12
Steve Holdorf8-May-08 10:12 
AnswerRe: Need to make a string's state avaliable from a web page to a custom control. Pin
Christian Graus8-May-08 11:15
protectorChristian Graus8-May-08 11:15 
AnswerRe: Need to make a string's state avaliable from a web page to a custom control. Pin
Steve Holdorf9-May-08 2:25
Steve Holdorf9-May-08 2:25 
QuestionDynamic gridview Pin
sabaMCA8-May-08 10:03
sabaMCA8-May-08 10:03 
AnswerRe: Dynamic gridview Pin
Christian Graus8-May-08 11:15
protectorChristian Graus8-May-08 11:15 
QuestionProblem in positioning div Pin
Deepak Nigam8-May-08 10:02
Deepak Nigam8-May-08 10:02 
Questionharizontal order in gridview Pin
sabaMCA8-May-08 10:01
sabaMCA8-May-08 10:01 
AnswerRe: harizontal order in gridview Pin
Christian Graus8-May-08 11:16
protectorChristian Graus8-May-08 11:16 
Questiondisplaying images from a bannerfarm Pin
JacquesDP8-May-08 8:28
JacquesDP8-May-08 8:28 
QuestionHow can I display image from SQL Binary field on Image control? Pin
Dong Kim8-May-08 5:53
Dong Kim8-May-08 5:53 
AnswerRe: How can I display image from SQL Binary field on Image control? Pin
Christian Graus8-May-08 11:17
protectorChristian Graus8-May-08 11:17 
Questionisolate the events in a WebPart from the other zones Pin
Ofer Gal8-May-08 5:41
professionalOfer Gal8-May-08 5:41 
QuestionSQL reporting services Pin
greekius8-May-08 3:53
greekius8-May-08 3:53 
AnswerRe: SQL reporting services Pin
led mike8-May-08 4:32
led mike8-May-08 4:32 
AnswerRe: SQL reporting services Pin
eyeseetee8-May-08 21:12
eyeseetee8-May-08 21:12 
QuestionHow to get checked radio button value in Radiobuttonlist Pin
chakran8-May-08 3:40
chakran8-May-08 3:40 
Hi,

am adding listitems to Radiobuttonlist dynamically. but when I click on button I didn't get selected item value. How to get selected radion button value during runtime(when click button). am using asp.net 2.0 and C#. pls see the below code.

<asp:Panel ID="panelRecharge" runat="server">
<asp:RadioButtonList ID="rdlRechargeOptions" runat="server" >
</asp:RadioButtonList>
</asp:Panel>


private void LoadRechargeOptions(VerifyPromotionResponse response)
{
ListItem li;
if (response.ChargeAmount1 >0)
{
li = new ListItem();
li.Attributes.Clear();
li.Value = response.ChargeAmount1.ToString();
li.Text = response.CurrencyCode + response.ChargeAmount1.ToString();
rdlRechargeOptions.Items.Add(li);
rdlRechargeOptions.RepeatDirection = RepeatDirection.Horizontal;
}


Thanks
AnswerRe: How to get checked radio button value in Radiobuttonlist Pin
led mike8-May-08 4:18
led mike8-May-08 4:18 
GeneralRe: How to get checked radio button value in Radiobuttonlist Pin
chakran8-May-08 4:22
chakran8-May-08 4:22 
QuestionSearch a text in website... Pin
SamRST8-May-08 2:55
SamRST8-May-08 2:55 
AnswerRe: Search a text in website... Pin
eyeseetee8-May-08 3:05
eyeseetee8-May-08 3:05 
GeneralRe: Search a text in website... Pin
EvilInside11-May-08 20:03
EvilInside11-May-08 20:03 
QuestionGridview foreign key not required Pin
janis.baldwin8-May-08 2:51
janis.baldwin8-May-08 2:51 
AnswerRe: Gridview foreign key not required Pin
eyeseetee8-May-08 3:04
eyeseetee8-May-08 3:04 
GeneralRe: Gridview foreign key not required Pin
janis.baldwin8-May-08 3:15
janis.baldwin8-May-08 3:15 
GeneralRe: Gridview foreign key not required Pin
eyeseetee8-May-08 3:17
eyeseetee8-May-08 3:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.