Click here to Skip to main content
15,890,438 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to open PDF from server? Pin
raghvendrapanda24-Mar-10 7:42
raghvendrapanda24-Mar-10 7:42 
GeneralRe: How to open PDF from server? Pin
Not Active24-Mar-10 8:12
mentorNot Active24-Mar-10 8:12 
GeneralRe: How to open PDF from server? Pin
Member 450194024-Mar-10 11:49
Member 450194024-Mar-10 11:49 
QuestionIE8:: Text is missing from text box while print preview on IE8 environment.!!?? Pin
chetan_agarwal24-Mar-10 3:12
chetan_agarwal24-Mar-10 3:12 
Questiondynamic textbox postback Pin
test-0924-Mar-10 2:21
test-0924-Mar-10 2:21 
AnswerRe: dynamic textbox postback Pin
PSK_24-Mar-10 2:30
PSK_24-Mar-10 2:30 
GeneralRe: dynamic textbox postback Pin
test-0924-Mar-10 2:55
test-0924-Mar-10 2:55 
GeneralRe: dynamic textbox postback Pin
PSK_24-Mar-10 3:25
PSK_24-Mar-10 3:25 
You can use a counter to generate the ids of the textbox. Every time you generate a text box increment the counter by one and store the value back to session or viewstate.
Your code that generates the text box will look something like this.

 TextBox newTextBox = new TextBox();
  newTextBox.ID = "repeaterTextBox" + Viewstate["COUNTER"].ToString();
//Add one to counter present in the viewstate and save it back to the viewstate.


At the time of retrieving just loop till the value of counter, you can generate all the ids back, by which you can get the values.
Regards,
Prakash Kalakoti

AnswerRe: dynamic textbox postback Pin
Amar Chaudhary24-Mar-10 9:39
Amar Chaudhary24-Mar-10 9:39 
Questionproblem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 1:01
professionalAmit Spadez24-Mar-10 1:01 
AnswerRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
keyur satyadev24-Mar-10 1:43
keyur satyadev24-Mar-10 1:43 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 18:43
professionalAmit Spadez24-Mar-10 18:43 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
keyur satyadev24-Mar-10 19:13
keyur satyadev24-Mar-10 19:13 
AnswerRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary24-Mar-10 9:47
Amar Chaudhary24-Mar-10 9:47 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 18:45
professionalAmit Spadez24-Mar-10 18:45 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary24-Mar-10 23:02
Amar Chaudhary24-Mar-10 23:02 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 23:08
professionalAmit Spadez24-Mar-10 23:08 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary25-Mar-10 0:50
Amar Chaudhary25-Mar-10 0:50 
QuestionASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 0:56
Mehdi Ghiasi24-Mar-10 0:56 
AnswerRe: ASP.NET v2 Compile Error 128 Pin
Manas Bhardwaj24-Mar-10 1:02
professionalManas Bhardwaj24-Mar-10 1:02 
QuestionRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 1:47
Mehdi Ghiasi24-Mar-10 1:47 
AnswerRe: ASP.NET v2 Compile Error 128 Pin
Manas Bhardwaj24-Mar-10 2:31
professionalManas Bhardwaj24-Mar-10 2:31 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 2:51
Mehdi Ghiasi24-Mar-10 2:51 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Amar Chaudhary24-Mar-10 9:50
Amar Chaudhary24-Mar-10 9:50 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi25-Mar-10 1:26
Mehdi Ghiasi25-Mar-10 1:26 

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.