Click here to Skip to main content
15,922,512 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Index Search... Pin
Harini N K24-Apr-08 18:52
Harini N K24-Apr-08 18:52 
GeneralRe: Index Search... Pin
Moghan24-Apr-08 18:59
Moghan24-Apr-08 18:59 
GeneralProblem with Loading an User Control dynamically [modified] Pin
lovedotnet24-Apr-08 18:24
lovedotnet24-Apr-08 18:24 
GeneralRe: Problem with Loading an User Control dynamically Pin
AlexeiXX324-Apr-08 18:43
AlexeiXX324-Apr-08 18:43 
GeneralRe: Problem with Loading an User Control dynamically Pin
lovedotnet25-Apr-08 0:56
lovedotnet25-Apr-08 0:56 
GeneralRe: Problem with Loading an User Control dynamically Pin
AlexeiXX325-Apr-08 5:17
AlexeiXX325-Apr-08 5:17 
GeneralRe: Problem with Loading an User Control dynamically Pin
Mircea Grelus25-Apr-08 12:12
Mircea Grelus25-Apr-08 12:12 
QuestionHow to get radiobutton value inside a button click event. [modified] Pin
chakran24-Apr-08 18:06
chakran24-Apr-08 18:06 
Hi ,
I have added radio button dynamically during page loading.I have two questiions.

1) when I click radio button, have to call javascript function.
2) Get value of radio button(RadioButtonId.Value) when I click NextButton.

// Adding radio buttons Dynamically to panel control.
HtmlInputRadioButton rdb = new HtmlInputRadioButton();
for (int i = 0; i < dvForDisplay.Count; i++)
{
rdb.ID = dvForDisplay[i]["RadioButtonId"].ToString();
rdb.Value = dvForDisplay[i]["PaymentGateway"].ToString();
panelInternational.Controls.Add(rdb);
}

// Button click event
protected void btnNext_Click(object sender, EventArgs e)
{
here I want to get radion button value.
}
Can anybody help me..

Thanks

modified on Friday, April 25, 2008 12:18 AM

AnswerRe: How to get radiobutton value inside a button click event. Pin
AlexeiXX324-Apr-08 18:26
AlexeiXX324-Apr-08 18:26 
GeneralRe: How to get radiobutton value inside a button click event. Pin
chakran24-Apr-08 18:56
chakran24-Apr-08 18:56 
GeneralRe: How to get radiobutton value inside a button click event. Pin
AlexeiXX324-Apr-08 19:01
AlexeiXX324-Apr-08 19:01 
GeneralRe: How to get radiobutton value inside a button click event. Pin
chakran24-Apr-08 19:08
chakran24-Apr-08 19:08 
GeneralRe: How to get radiobutton value inside a button click event. Pin
chakran24-Apr-08 20:38
chakran24-Apr-08 20:38 
GeneralRe: How to get radiobutton value inside a button click event. Pin
AlexeiXX325-Apr-08 5:23
AlexeiXX325-Apr-08 5:23 
GeneralChallenge - DetailsView and Calendar problem Pin
Ekjon24-Apr-08 11:59
Ekjon24-Apr-08 11:59 
GeneralRe: Challenge - DetailsView and Calendar problem [modified] Pin
AlexeiXX324-Apr-08 18:31
AlexeiXX324-Apr-08 18:31 
GeneralRe: Challenge - DetailsView and Calendar problem Pin
AlexeiXX325-Apr-08 6:18
AlexeiXX325-Apr-08 6:18 
GeneralRe: Challenge - DetailsView and Calendar problem Pin
Ekjon25-Apr-08 7:26
Ekjon25-Apr-08 7:26 
GeneralRe: Challenge - DetailsView and Calendar problem Pin
AlexeiXX325-Apr-08 6:22
AlexeiXX325-Apr-08 6:22 
QuestionIs it possible to display a gridview based on a session variable Pin
ahlaj7724-Apr-08 8:19
ahlaj7724-Apr-08 8:19 
GeneralRe: Is it possible to display a gridview based on a session variable Pin
Ekjon24-Apr-08 11:36
Ekjon24-Apr-08 11:36 
GeneralRe: Is it possible to display a gridview based on a session variable Pin
N a v a n e e t h24-Apr-08 17:07
N a v a n e e t h24-Apr-08 17:07 
GeneralRe: Is it possible to display a gridview based on a session variable Pin
AlexeiXX324-Apr-08 18:50
AlexeiXX324-Apr-08 18:50 
QuestionRe: Is it possible to display a gridview based on a session variable Pin
ahlaj7725-Apr-08 2:34
ahlaj7725-Apr-08 2:34 
GeneralRe: Is it possible to display a gridview based on a session variable Pin
leckey25-Apr-08 3:53
leckey25-Apr-08 3:53 

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.