Click here to Skip to main content
15,896,118 members
Home / Discussions / ASP.NET
   

ASP.NET

 
SuggestionRe: ASP.NET Data Grid and Data List Click Event Pin
Ahmed Bensaid26-Feb-14 21:39
professionalAhmed Bensaid26-Feb-14 21:39 
Questionpassing value betwen pages Pin
tarzn24-Feb-14 5:47
tarzn24-Feb-14 5:47 
Hi, I have 'strange' problem with updating received value from another html page:
Supposing I have two pages A and B.
The Page A sent a value (some component with the
name 'selection') by using method Submit in javascript:

Page A
-------
function foo(..) {
...
document.forms["form"].submit();
window.close(); //the page will be closed after sending the value
}

Page B recived the value in the Page_Load:
------
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
if (Request.QueryString.HasKeys())
{
string navigate = Request.QueryString["selection"];
this.tbValue.Text = navigate;
}
}
The variable 'navigate' has the value sent from the page A thus TextBox.Text is set properly by this value inside the method, but finally is NOT displayed for the client Page B. How to handle this problem of refreshing Textbox so that the value is displayed?
thanks for all useful advice.
AnswerRe: passing value betwen pages Pin
Richard Deeming24-Feb-14 9:04
mveRichard Deeming24-Feb-14 9:04 
Questioncrystal report Pin
Member 1062089124-Feb-14 1:10
Member 1062089124-Feb-14 1:10 
AnswerRe: crystal report Pin
thatraja24-Feb-14 4:06
professionalthatraja24-Feb-14 4:06 
QuestionHow to develop a Website Pin
damiend12323-Feb-14 19:36
damiend12323-Feb-14 19:36 
AnswerRe: How to develop a Website Pin
Kornfeld Eliyahu Peter23-Feb-14 20:56
professionalKornfeld Eliyahu Peter23-Feb-14 20:56 
QuestionTransactions in Web applications Pin
Snesh Prajapati23-Feb-14 3:07
professionalSnesh Prajapati23-Feb-14 3:07 
AnswerRe: Transactions in Web applications Pin
thatraja1-Mar-14 20:52
professionalthatraja1-Mar-14 20:52 
AnswerRe: Transactions in Web applications Pin
Snesh Prajapati1-Mar-14 23:24
professionalSnesh Prajapati1-Mar-14 23:24 
Questionbinding gridview Pin
ptvce22-Feb-14 17:52
ptvce22-Feb-14 17:52 
AnswerRe: binding gridview Pin
Ahmed Bensaid26-Feb-14 2:52
professionalAhmed Bensaid26-Feb-14 2:52 
QuestionPass textbox value from child window to parent page in asp with out post back in parent Pin
Member 1023254621-Feb-14 20:24
Member 1023254621-Feb-14 20:24 
QuestionWord 2010 Protected View Annoyances Pin
dannomanno21-Feb-14 4:03
dannomanno21-Feb-14 4:03 
AnswerRe: Word 2010 Protected View Annoyances Pin
Richard Deeming21-Feb-14 5:26
mveRichard Deeming21-Feb-14 5:26 
GeneralRe: Word 2010 Protected View Annoyances Pin
dannomanno21-Feb-14 6:04
dannomanno21-Feb-14 6:04 
GeneralRe: Word 2010 Protected View Annoyances Pin
Richard Deeming21-Feb-14 6:34
mveRichard Deeming21-Feb-14 6:34 
QuestionHow to test load of a web service ???????? Pin
Amit Saini20-Feb-14 22:39
professionalAmit Saini20-Feb-14 22:39 
SuggestionRe: How to test load of a web service ???????? Pin
Richard MacCutchan21-Feb-14 0:40
mveRichard MacCutchan21-Feb-14 0:40 
AnswerRe: How to test load of a web service ???????? Pin
Ahmed Bensaid26-Feb-14 2:56
professionalAhmed Bensaid26-Feb-14 2:56 
GeneralRe: How to test load of a web service ???????? Pin
Amit Saini29-Mar-14 20:41
professionalAmit Saini29-Mar-14 20:41 
QuestionMVC AntiForgeryToken and Partial Views Pin
littleGreenDude20-Feb-14 8:17
littleGreenDude20-Feb-14 8:17 
QuestionManaging XML Files Pin
Fred283419-Feb-14 2:54
Fred283419-Feb-14 2:54 
QuestionAsp.Net Notifiation Push Pin
Zeyad Jalil19-Feb-14 0:55
professionalZeyad Jalil19-Feb-14 0:55 
AnswerRe: Asp.Net Notifiation Push Pin
Richard Deeming19-Feb-14 2:33
mveRichard Deeming19-Feb-14 2:33 

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.