Tuesday, March 2, 2010

Customized Message pop up Box in c# for websites

It gives you a pop up msgbox to show error messages or any alerts.

public Label msgbox(string text)
{
Label lbl = new Label();
lbl.Text = "";
return (lbl);
}

No comments: