Click here to Skip to main content
16,007,885 members
Home / Discussions / Web Development
   

Web Development

 
Questioncrystal report in asp Pin
Haresh Boghani16-Jun-07 0:36
Haresh Boghani16-Jun-07 0:36 
QuestionTo make a pop window at PageLoad time Pin
codingrocks15-Jun-07 18:42
codingrocks15-Jun-07 18:42 
AnswerRe: To make a pop window at PageLoad time Pin
JimmyRopes16-Jun-07 3:54
professionalJimmyRopes16-Jun-07 3:54 
GeneralRe: To make a pop window at PageLoad time Pin
badgrs18-Jun-07 0:15
badgrs18-Jun-07 0:15 
QuestionAjax Random pull dosn't work in IE, ok in Firefox Pin
bartedgerton15-Jun-07 9:20
bartedgerton15-Jun-07 9:20 
QuestionHELP: ASP JScript & VBScript interoperability [modified] Pin
andrewwan198015-Jun-07 6:24
andrewwan198015-Jun-07 6:24 
AnswerASP JScript & VBScript interoperability Pin
andyharman15-Jun-07 7:56
professionalandyharman15-Jun-07 7:56 
Questionproblem with XMLHttpRequest Pin
tranglt14-Jun-07 23:55
tranglt14-Jun-07 23:55 
I have some code:
-------Javascript ------------
...
function SavePosition(source)
{
// Call AJAX request to save


//var url = "Home.aspx?order=" + getPositionOrder();
url = "Home.aspx?order=0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12"
var objXmlHttp = createXMLHTTP();

objXmlHttp.open("GET", url, true);

if(objXmlHttp == null)
{
alert("Browser does not support HTTP request!");
return;
}

ShowWarning(source, waitingHTML);

objXmlHttp.onreadystatechange = function()
{
if (objXmlHttp.readyState == 4)
{
if(objXmlHttp.status == 200)
{
setTimeout("complete()", 2000);
}
else
{
alert("Error while trying to save.");
}
}

}
objXmlHttp.send(null);
}
...
---- Home.aspx.cs ---

...

private void Page_Load(object sender, System.EventArgs e)
{ // Put user code to initialize the page here
if (Request["order"] != null)
{
SavePositionOrder(Request["order"].ToString());
}
}

OK,
I have a button on file Home.aspx.
I click the button first, my web is done. But when I click the second the home.aspx seems not load because page_load function don't execute.
Thanks

Live 2 Code
Code 2 Get Money
Money 2 Love
Love to Live
QuestionList problem. Please, help me out. Pin
shapper14-Jun-07 12:34
shapper14-Jun-07 12:34 
AnswerRe: List problem. Please, help me out. Pin
Johnny ²14-Jun-07 14:34
Johnny ²14-Jun-07 14:34 
GeneralRe: List problem. Please, help me out. Pin
bartedgerton15-Jun-07 9:13
bartedgerton15-Jun-07 9:13 
QuestionPopulating a control dependant on data bound in Gridview Pin
Chris McGlothen14-Jun-07 8:36
Chris McGlothen14-Jun-07 8:36 
AnswerRe: Populating a control dependant on data bound in Gridview Pin
kubben15-Jun-07 3:56
kubben15-Jun-07 3:56 
QuestionRe: Populating a control dependant on data bound in Gridview Pin
Chris McGlothen15-Jun-07 4:42
Chris McGlothen15-Jun-07 4:42 
AnswerRe: Populating a control dependant on data bound in Gridview Pin
kubben15-Jun-07 4:44
kubben15-Jun-07 4:44 
GeneralRe: Populating a control dependant on data bound in Gridview Pin
Chris McGlothen15-Jun-07 7:06
Chris McGlothen15-Jun-07 7:06 
QuestionSoap Errors (Soap Toolkit 3.0) Pin
horacyjr14-Jun-07 8:00
horacyjr14-Jun-07 8:00 
QuestionSetting Up a Form, help please Pin
theimmortalmoo14-Jun-07 6:18
theimmortalmoo14-Jun-07 6:18 
AnswerRe: Setting Up a Form, help please Pin
Johnny ²14-Jun-07 14:36
Johnny ²14-Jun-07 14:36 
QuestionEmbedding Myriad3D ActiveX [modified] Pin
notacreativeguy14-Jun-07 4:27
notacreativeguy14-Jun-07 4:27 
QuestionHow to end Cookie's Session? Pin
vijay_8314-Jun-07 1:42
vijay_8314-Jun-07 1:42 
AnswerRe: How to end Cookie's Session? Pin
sathesh pandian27-Jun-07 20:01
sathesh pandian27-Jun-07 20:01 
QuestionHow to call web page using Web service Pin
Rajesh_K_Sharma13-Jun-07 20:47
Rajesh_K_Sharma13-Jun-07 20:47 
AnswerRe: How to call web page using Web service Pin
sathesh pandian27-Jun-07 20:04
sathesh pandian27-Jun-07 20:04 
QuestionIIS issues with Norton Antivirus Corporate Edition Pin
Aleemulhaq13-Jun-07 20:32
Aleemulhaq13-Jun-07 20:32 

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.