Click here to Skip to main content
15,919,028 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionOpen in seperate window [modified] Pin
SUDHAKAR PALLAM7-Oct-07 22:05
SUDHAKAR PALLAM7-Oct-07 22:05 
AnswerRe: Open in seperate window Pin
Guffa7-Oct-07 22:35
Guffa7-Oct-07 22:35 
GeneralRe: Open in seperate window Pin
SUDHAKAR PALLAM7-Oct-07 22:40
SUDHAKAR PALLAM7-Oct-07 22:40 
GeneralRe: Open in seperate window Pin
SUDHAKAR PALLAM7-Oct-07 22:43
SUDHAKAR PALLAM7-Oct-07 22:43 
AnswerRe: Open in seperate window Pin
Guffa7-Oct-07 23:32
Guffa7-Oct-07 23:32 
QuestionChange Date Format Pin
Deepak the Cool7-Oct-07 21:45
Deepak the Cool7-Oct-07 21:45 
AnswerRe: Change Date Format Pin
Christian Graus7-Oct-07 22:33
protectorChristian Graus7-Oct-07 22:33 
AnswerRe: Change Date Format Pin
varshavmane7-Oct-07 22:36
varshavmane7-Oct-07 22:36 
Questionredirect after session timeout Pin
selva457-Oct-07 21:44
selva457-Oct-07 21:44 
AnswerRe: redirect after session timeout Pin
John-ph7-Oct-07 23:02
John-ph7-Oct-07 23:02 
Questionproblem in searching records by date in sql query for asp.net Pin
swapnileke7-Oct-07 21:08
swapnileke7-Oct-07 21:08 
AnswerRe: problem in searching records by date in sql query for asp.net Pin
Christian Graus7-Oct-07 21:35
protectorChristian Graus7-Oct-07 21:35 
QuestionHow to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 20:56
varshavmane7-Oct-07 20:56 
AnswerRe: How to retain the value of Hidden TextBox on Postback Pin
Christian Graus7-Oct-07 21:36
protectorChristian Graus7-Oct-07 21:36 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 22:27
varshavmane7-Oct-07 22:27 
AnswerRe: How to retain the value of Hidden TextBox on Postback Pin
N a v a n e e t h7-Oct-07 22:06
N a v a n e e t h7-Oct-07 22:06 
ASP.NET 2.0 wrote:
window.location.reload();


This will reload the entire page. So no data will be persisted. Try passing querystring values to the page and assign that again to the textbox. May be something like

window.location.href='yourpage.aspx?value=";


Then in textbox
document.getElementById("<%=htxtQueryStringValues.ClientID%>").value = "<%=Request.QueryString["value"]%>";

Hope this helps


GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 22:30
varshavmane7-Oct-07 22:30 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
Christian Graus7-Oct-07 22:32
protectorChristian Graus7-Oct-07 22:32 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 22:44
varshavmane7-Oct-07 22:44 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
N a v a n e e t h7-Oct-07 22:50
N a v a n e e t h7-Oct-07 22:50 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 22:56
varshavmane7-Oct-07 22:56 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
N a v a n e e t h7-Oct-07 23:08
N a v a n e e t h7-Oct-07 23:08 
AnswerRe: How to retain the value of Hidden TextBox on Postback Pin
Urs Enzler7-Oct-07 22:48
Urs Enzler7-Oct-07 22:48 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
varshavmane7-Oct-07 22:52
varshavmane7-Oct-07 22:52 
GeneralRe: How to retain the value of Hidden TextBox on Postback Pin
Urs Enzler7-Oct-07 23:13
Urs Enzler7-Oct-07 23:13 

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.