Solution1 :- Enable view state of the control,so that the value is retained.The popup containing textbox should in the same page where the label is present.This will help u in retaining the contents. Solution2 :- Store the data in a hidden box and reload the control again with the contents.
Arjune
Posts
-
Displays pop-up box with text box -
how to fix textbox size using "%" [modified]Please check whether all other TDs have their width specified.If all TDs have proper width summing up to 100 then this problem will not exist.
-
Any thing equivalent to "eval" in ASP.NET?eval is the system defined method in Javascript.It will return the object if a string is passed as argument. Eg eval("Textbox1")returns me the control object.Is there any equvalent method in ASP.Net?
-
Query String. How to create it?Try giving path name like this "../RSS.ashx?Channel=News&Culture=pt-PT". or "//RSS.ashx?Channel=News&Culture=pt-PT". or if possible give the full path.Don't use this symbol "~"
-
Bring window to frontMy Suggestion is better go for AJAX technology instead of posting back your main page.Even if the cotent of the pop window is reloaded it will still remain in the front.There will not be any dependency between Main page and Pop up window.
-
Can logon page be skipped if form authentication is used?In ASP.NET if a application is using Form Authentication ,and if the user skips the login page and directly tries to browse the inner page using its link what will happen?Will the authentication be violated by the user?