Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void SendPopUp()
- {
- message = message.Replace("'", "\\'");
- title = title.Replace("'", "\\'");
- string key = Guid.NewGuid().ToString();
- StringBuilder javascript = new StringBuilder();
- javascript.Append("initPopupVariables();");
- javascript.Append(" AlertPopUp('" +title +"', '" +message +"', '" + GetPopUpTypeAsString() +"');");
- Page.ClientScript.RegisterStartupScript(page.GetType(), "AlertPopUpInit", javascript, true);
- }
- }
Add Comment
Please, Sign In to add comment