Click here to Skip to main content
15,867,308 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionExperience with BootMetro? Pin
Marco Bertschi24-Jan-13 23:06
protectorMarco Bertschi24-Jan-13 23:06 
AnswerRe: Experience with BootMetro? Pin
Abhishek Pant25-Jan-13 10:28
professionalAbhishek Pant25-Jan-13 10:28 
Questionsignature capture from signature pad Pin
premaa36@gmail.com24-Jan-13 17:36
premaa36@gmail.com24-Jan-13 17:36 
AnswerRe: signature capture from signature pad Pin
Sandeep Mewara25-Jan-13 5:03
mveSandeep Mewara25-Jan-13 5:03 
AnswerRe: signature capture from signature pad Pin
Abhishek Pant25-Jan-13 9:51
professionalAbhishek Pant25-Jan-13 9:51 
QuestionHow to get the value of a dynamically created textBox in asp.net C#? Pin
susanna.floora24-Jan-13 2:46
susanna.floora24-Jan-13 2:46 
AnswerRe: How to get the value of a dynamically created textBox in asp.net C#? Pin
chester_it2124-Jan-13 14:50
chester_it2124-Jan-13 14:50 
GeneralRe: How to get the value of a dynamically created textBox in asp.net C#? Pin
susanna.floora24-Jan-13 17:54
susanna.floora24-Jan-13 17:54 
TextBox txt = new TextBox();
txt.ID = ID;
txt.Text = DateTime.Now.ToString();
PlcHolder.Controls.Add(txt);
DropDownList ddl = new DropDownList();
ddl.ID = ID;
string strSql = "SELECT Code,[Name] FROM SDTS_GSTYPE";
DataTable dtBranch = getDataTable(strSql);
ddl.DataSource = dtBranch;
ddl.AutoPostBack = true;
ddl.DataTextField = "Name";
ddl.DataValueField = "Code";
ddl.SelectedIndex = 0;
ddl.DataBind();
PlcHolder.Controls.Add(ddl);
This is the code i have written to create a textbox.Now how do i get the textbox value and selected value of dropDownlist in my buttonClick event.
GeneralRe: How to get the value of a dynamically created textBox in asp.net C#? Pin
chester_it2129-Jan-13 4:47
chester_it2129-Jan-13 4:47 
GeneralRe: How to get the value of a dynamically created textBox in asp.net C#? Pin
susanna.floora3-Feb-13 20:30
susanna.floora3-Feb-13 20:30 
GeneralRe: How to get the value of a dynamically created textBox in asp.net C#? Pin
chester_it216-Feb-13 6:22
chester_it216-Feb-13 6:22 
QuestionURL Rewriting Pin
MaheshPandian24-Jan-13 0:37
MaheshPandian24-Jan-13 0:37 
AnswerRe: URL Rewriting Pin
Shameel24-Jan-13 1:00
professionalShameel24-Jan-13 1:00 
GeneralRe: URL Rewriting Pin
MaheshPandian24-Jan-13 2:28
MaheshPandian24-Jan-13 2:28 
QuestionHow to create loocal SMTP server in windows Pin
sani_alam23-Jan-13 23:59
sani_alam23-Jan-13 23:59 
AnswerRe: How to create loocal SMTP server in windows Pin
Richard MacCutchan24-Jan-13 1:54
mveRichard MacCutchan24-Jan-13 1:54 
QuestionHow to extract data of a table. Pin
anubhaw.gupta23-Jan-13 20:06
anubhaw.gupta23-Jan-13 20:06 
Questionhow to use ckeditor in asp.net? Pin
Daxiii23-Jan-13 0:09
Daxiii23-Jan-13 0:09 
AnswerRe: how to use ckeditor in asp.net? Pin
R. Giskard Reventlov23-Jan-13 5:31
R. Giskard Reventlov23-Jan-13 5:31 
AnswerRe: how to use ckeditor in asp.net? Pin
Sandeep Mewara23-Jan-13 8:20
mveSandeep Mewara23-Jan-13 8:20 
Questionhow resize this image before uploading Pin
Jassim Rahma22-Jan-13 8:44
Jassim Rahma22-Jan-13 8:44 
AnswerRe: how resize this image before uploading Pin
jkirkerx22-Jan-13 12:25
professionaljkirkerx22-Jan-13 12:25 
AnswerRe: how resize this image before uploading Pin
Richard Deeming23-Jan-13 1:53
mveRichard Deeming23-Jan-13 1:53 
QuestionIssue in web farm scenario deployment ASP.NET Pin
mukeshgaharwar21-Jan-13 19:20
mukeshgaharwar21-Jan-13 19:20 
AnswerRe: Issue in web farm scenario deployment ASP.NET Pin
Sandeep Mewara22-Jan-13 2:41
mveSandeep Mewara22-Jan-13 2:41 

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.