Click here to Skip to main content
15,868,349 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
strClientScript = "<script language='JavaScript'>";
                                            strClientScript += "QuestionTypeMessageBox('', 'Yes','MFGOperationStat','MFG');";
                                            strClientScript += "CancelPostBack(oEvent, false);";
                                            strClientScript += "</script>";
                                            ScriptManager.RegisterStartupScript(this, this.GetType(), "PMFGARCtest", strClientScript, false);
                                            return;


i am executing above script from server side to get the response from user.
If user presses "Yes" further process should be continued else it has to exit.
But i am unable to get response as script manager does not executes with out return to show the message.

What is the thing i am missing out here to get user response.

Sivaraman.
Posted
Comments
Nandakishore G N 24-Jan-13 0:34am    
to use javascript first register clientscript..and then this works..

Write "QuestionTypeMessageBox" function or use confirm as manish says.
 
Share this answer
 
use confirm in place of QuestionTypeMessageBox
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900