Message Box in ASP.NET hindering the layout -
i displaying message in asp.net code-behind using this:
response.write("<script>alert('hello')</script>");
when ok button pressed on message box, whole layout of web page shifts little towards right direction. wrong? else added?
private void alert(string msg) { response.write("<script language = 'javascript'>window.alert('" + msg + "')</script>"); }
try previos method ..
if u want cool messages try following link:
Comments
Post a Comment