Click here to Skip to main content
15,898,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questioncomplexity in saving date from different countries Pin
NidhiKanu22-Jan-09 2:08
professionalNidhiKanu22-Jan-09 2:08 
AnswerRe: complexity in saving date from different countries Pin
Ashutosh Phoujdar22-Jan-09 2:35
Ashutosh Phoujdar22-Jan-09 2:35 
GeneralRe: complexity in saving date from different countries Pin
NidhiKanu22-Jan-09 2:43
professionalNidhiKanu22-Jan-09 2:43 
GeneralRe: complexity in saving date from different countries Pin
Ashutosh Phoujdar22-Jan-09 2:50
Ashutosh Phoujdar22-Jan-09 2:50 
GeneralRe: complexity in saving date from different countries Pin
NidhiKanu22-Jan-09 2:53
professionalNidhiKanu22-Jan-09 2:53 
QuestionFindControl returning null Pin
cooltoad12322-Jan-09 1:51
cooltoad12322-Jan-09 1:51 
AnswerRe: FindControl returning null Pin
Herman<T>.Instance22-Jan-09 2:00
Herman<T>.Instance22-Jan-09 2:00 
GeneralRe: FindControl returning null Pin
cooltoad12322-Jan-09 2:08
cooltoad12322-Jan-09 2:08 
protected void btnsubmit_OnClick(object sender, EventArgs e)
{


string sqlStr1 = "SELECT * FROM valuess";
dAdapter2 = new OleDbDataAdapter(sqlStr1, connectionString);
dset2 = new DataSet();

dAdapter2.Fill(dset2, "value_name");
dAdapter2.Dispose();

dt2 = new DataTable();
dt2 = dset2.Tables["value_name"];



string radio1;
radio1 = "radioButton_" + dt2.Rows[0]["value_name"].ToString();
RadioButton rb_1 = new RadioButton();
rb_1 = (RadioButton)Page.FindControl(radio1.ToString());



}


I am creating these radio buttons in selection change event of dropdownlist......
GeneralRe: FindControl returning null Pin
Herman<T>.Instance22-Jan-09 2:17
Herman<T>.Instance22-Jan-09 2:17 
GeneralRe: FindControl returning null Pin
cooltoad12322-Jan-09 2:23
cooltoad12322-Jan-09 2:23 
Questionmenu control Pin
billcodes22-Jan-09 0:33
billcodes22-Jan-09 0:33 
Questionbuiltin login control Pin
NidhiKanu22-Jan-09 0:25
professionalNidhiKanu22-Jan-09 0:25 
AnswerRe: builtin login control Pin
Venkatesh Mookkan22-Jan-09 0:42
Venkatesh Mookkan22-Jan-09 0:42 
GeneralRe: builtin login control Pin
NidhiKanu22-Jan-09 0:47
professionalNidhiKanu22-Jan-09 0:47 
GeneralRe: builtin login control Pin
Ashutosh Phoujdar22-Jan-09 1:10
Ashutosh Phoujdar22-Jan-09 1:10 
GeneralRe: builtin login control Pin
NidhiKanu22-Jan-09 1:16
professionalNidhiKanu22-Jan-09 1:16 
GeneralRe: builtin login control Pin
Ashfield22-Jan-09 1:27
Ashfield22-Jan-09 1:27 
GeneralRe: builtin login control Pin
Venkatesh Mookkan22-Jan-09 2:43
Venkatesh Mookkan22-Jan-09 2:43 
GeneralRe: builtin login control Pin
NidhiKanu22-Jan-09 2:46
professionalNidhiKanu22-Jan-09 2:46 
QuestionCalling a serverside non-static method from client side javascript Pin
jithusuji22-Jan-09 0:19
jithusuji22-Jan-09 0:19 
Questiontreeview hierarchical asp.net web forms Pin
manovijay22-Jan-09 0:16
manovijay22-Jan-09 0:16 
Question[newbie] Binding to a dropdownlist Pin
jon-8021-Jan-09 23:59
professionaljon-8021-Jan-09 23:59 
AnswerRe: [newbie] Binding to a dropdownlist Pin
jon-8022-Jan-09 0:11
professionaljon-8022-Jan-09 0:11 
QuestionWhat would be the best approach to maintain login-in state for the users? Pin
Jas 00721-Jan-09 23:27
Jas 00721-Jan-09 23:27 
AnswerRe: What would be the best approach to maintain login-in state for the users? Pin
Abhijit Jana21-Jan-09 23:44
professionalAbhijit Jana21-Jan-09 23:44 

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.