Click here to Skip to main content
16,004,887 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionall, Pin
ajay5888612-Oct-07 2:01
ajay5888612-Oct-07 2:01 
AnswerRe: all, Pin
N a v a n e e t h12-Oct-07 5:11
N a v a n e e t h12-Oct-07 5:11 
QuestionRegarding Deployment of application in Asp.net 2.0 Pin
Aavesh Agarwal12-Oct-07 2:01
Aavesh Agarwal12-Oct-07 2:01 
AnswerRe: Regarding Deployment of application in Asp.net 2.0 Pin
kubben12-Oct-07 2:18
kubben12-Oct-07 2:18 
AnswerRe: Regarding Deployment of application in Asp.net 2.0 Pin
Sandeep Kumar12-Oct-07 2:20
Sandeep Kumar12-Oct-07 2:20 
AnswerRe: Regarding Deployment of application in Asp.net 2.0 Pin
Dave Kreskowiak12-Oct-07 4:18
mveDave Kreskowiak12-Oct-07 4:18 
QuestionMessageBox Pin
M_Menon12-Oct-07 1:54
M_Menon12-Oct-07 1:54 
AnswerRe: MessageBox Pin
kubben12-Oct-07 2:00
kubben12-Oct-07 2:00 
It appears that you are missing and '=' between language and javascript. Instead of using Response.Write perhaps you should register a startup script.
private void ShowDialog(string p_msg)
{
 Type cstype = this.GetType();
 StringBuilder tmpSB = new StringBuilder();
 tmpSB.Append("<script type=text/javascript>");

 tmpSB.Append("alert('" + p_msg + "')");
 tmpSB.Append("</script>");
 ClientScript.RegisterClientScriptBlock(cstype, "Save", tmpSB.ToString());
}


Hope that helps.
Ben
GeneralRe: MessageBox Pin
M_Menon12-Oct-07 2:37
M_Menon12-Oct-07 2:37 
GeneralRe: MessageBox Pin
kubben12-Oct-07 2:39
kubben12-Oct-07 2:39 
GeneralRe: MessageBox Pin
M_Menon12-Oct-07 3:07
M_Menon12-Oct-07 3:07 
GeneralRe: MessageBox Pin
kubben12-Oct-07 3:14
kubben12-Oct-07 3:14 
GeneralRe: MessageBox Pin
M_Menon12-Oct-07 3:17
M_Menon12-Oct-07 3:17 
GeneralRe: MessageBox Pin
kubben12-Oct-07 3:22
kubben12-Oct-07 3:22 
GeneralRe: MessageBox Pin
Sandeep Kumar12-Oct-07 2:40
Sandeep Kumar12-Oct-07 2:40 
GeneralRe: MessageBox Pin
M_Menon12-Oct-07 3:16
M_Menon12-Oct-07 3:16 
GeneralRe: MessageBox Pin
Sandeep Kumar12-Oct-07 3:24
Sandeep Kumar12-Oct-07 3:24 
GeneralRe: MessageBox Pin
M_Menon14-Oct-07 21:37
M_Menon14-Oct-07 21:37 
QuestionCheck for Date Values..... not duplicating? Pin
codingrocks12-Oct-07 1:50
codingrocks12-Oct-07 1:50 
AnswerRe: Check for Date Values..... not duplicating? Pin
c#ivan12-Oct-07 5:08
c#ivan12-Oct-07 5:08 
Questionrunning application in browser Pin
Sunil Wise12-Oct-07 1:47
professionalSunil Wise12-Oct-07 1:47 
QuestionRe: running application in browser Pin
Sunil Wise12-Oct-07 2:27
professionalSunil Wise12-Oct-07 2:27 
Questionvideo chatroom Pin
koma.L12-Oct-07 1:40
koma.L12-Oct-07 1:40 
AnswerRe: video chatroom Pin
Imran Khan Pathan12-Oct-07 2:03
Imran Khan Pathan12-Oct-07 2:03 
GeneralRe: video chatroom Pin
koma.L12-Oct-07 5:42
koma.L12-Oct-07 5:42 

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.