Click here to Skip to main content
15,881,757 members
Articles / Web Development / ASP.NET
Tip/Trick

ASP.NET web page goes blank with JavaScript alert()

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
17 Oct 2011CPOL 27.9K   4   1
How to fix the issues when an ASP.NET web page goes blank with JavaScript alert() .

An ASP.NET web page goes blank if you inject the JavaScript alert(); function using Response.Write from the code-behind. Here is a fix for it.


C#
private void ShowMessage(string message)
	{
		String scriptMessage = "<script language='javascript'>function window.onload(){alert('" + message + "');}</script>";
		if (!ClientScript.IsClientScriptBlockRegistered("MyMessage"))
		{
			ClientScript.RegisterClientScriptBlock(this.GetType(),"MyMessage", scriptMessage.ToString());
		}
	}

License

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


Written By
Web Developer
India India
Software developer by profession, working for a service and product based organisation in India.

Career graph:
Software Programmer since 2002.
Web Developer in ASP.NET since 2004.

Interests:
I love reading the blogs and articles of technology experts. I love codeproject and stackoverflow .

I love to share knowledge and help the programmers. I appreciate if some body corrects my code or my concepts which helps me learn.

Comments and Discussions

 
GeneralI have faced same problem with alert() function. what is re... Pin
udusat1316-Oct-11 19:06
udusat1316-Oct-11 19:06 

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.