Click here to Skip to main content
15,891,033 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How can I display a pop-up when hovering over a Gridview row? Pin
Parwej Ahamad12-Jan-11 9:05
professionalParwej Ahamad12-Jan-11 9:05 
AnswerRe: How can I display a pop-up when hovering over a Gridview row? Resolved Pin
JTRizos12-Jan-11 12:22
JTRizos12-Jan-11 12:22 
GeneralRe: How can I display a pop-up when hovering over a Gridview row? Resolved Pin
Parwej Ahamad12-Jan-11 19:17
professionalParwej Ahamad12-Jan-11 19:17 
QuestionFindControl("id"); does not work - another alternative? Pin
lvq6844-Jan-11 4:44
lvq6844-Jan-11 4:44 
AnswerRe: FindControl("id"); does not work - another alternative? Pin
Manas Bhardwaj4-Jan-11 5:59
professionalManas Bhardwaj4-Jan-11 5:59 
AnswerRe: FindControl("id"); does not work - another alternative? Pin
Espen Harlinn4-Jan-11 10:53
professionalEspen Harlinn4-Jan-11 10:53 
AnswerRe: FindControl("id"); does not work - another alternative? Pin
DoctorMick5-Jan-11 6:01
DoctorMick5-Jan-11 6:01 
AnswerRe: FindControl("id"); does not work - another alternative? Pin
Not Active5-Jan-11 6:17
mentorNot Active5-Jan-11 6:17 
lvq684 wrote:
1. i get a string from a webservice (session): string boxstring = "";


This really doesn't make sense to me. What is the purpose of this webservice? The html is useless, it doesn't have any context.

Since the control is being added to the innerHtml of the div at runtime it is not available during postback; it isn't part of the page's control collection.

You could accomplish what you are asking by using a Panel in place of the div, or adding the runat=sever attribute to the div you have

TextBox txt = new TextBox();
div.Controls.Add(txt); 


Since it is being added dynamically you must recreate the control during postback but then you could access it's value.

I know the language. I've read a book. - _Madmatt

QuestionProblem with getting control id on drag and drop. Pin
Haider M Rizvi4-Jan-11 1:03
Haider M Rizvi4-Jan-11 1:03 
AnswerRe: Problem with getting control id on drag and drop. Pin
daneroo4-Jan-11 5:14
daneroo4-Jan-11 5:14 
Questionoracle connection problem with Xp-32bit Pin
vijay.victory3-Jan-11 20:03
vijay.victory3-Jan-11 20:03 
QuestionNot Opening File Pin
vishnukamath3-Jan-11 0:57
vishnukamath3-Jan-11 0:57 
AnswerRe: Not Opening File Pin
StianSandberg3-Jan-11 1:37
StianSandberg3-Jan-11 1:37 
AnswerRe: Not Opening File Pin
Not Active3-Jan-11 2:42
mentorNot Active3-Jan-11 2:42 
AnswerRe: Not Opening File Pin
Sunasara Imdadhusen5-Jan-11 0:58
professionalSunasara Imdadhusen5-Jan-11 0:58 
AnswerRe: Not Opening File Pin
rt28006-Jan-11 3:06
professionalrt28006-Jan-11 3:06 
QuestionI want to calculate Number of user who click on banner. Pin
Honeyboy_201-Jan-11 4:43
Honeyboy_201-Jan-11 4:43 
AnswerRe: I want to calculate Number of user who click on banner. Pin
Not Active1-Jan-11 5:16
mentorNot Active1-Jan-11 5:16 
AnswerRe: I want to calculate Number of user who click on banner. Pin
Keith Barrow2-Jan-11 1:18
professionalKeith Barrow2-Jan-11 1:18 
AnswerRe: I want to calculate Number of user who click on banner. Pin
Pete O'Hanlon2-Jan-11 4:14
mvePete O'Hanlon2-Jan-11 4:14 
GeneralRe: I want to calculate Number of user who click on banner. Pin
fjdiewornncalwe2-Jan-11 4:28
professionalfjdiewornncalwe2-Jan-11 4:28 
GeneralRe: I want to calculate Number of user who click on banner. Pin
Pete O'Hanlon2-Jan-11 9:45
mvePete O'Hanlon2-Jan-11 9:45 
GeneralRe: I want to calculate Number of user who click on banner. Pin
Honeyboy_202-Jan-11 11:35
Honeyboy_202-Jan-11 11:35 
GeneralRe: I want to calculate Number of user who click on banner. Pin
Not Active2-Jan-11 11:41
mentorNot Active2-Jan-11 11:41 
GeneralRe: I want to calculate Number of user who click on banner. Pin
Pete O'Hanlon2-Jan-11 11:44
mvePete O'Hanlon2-Jan-11 11: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.