PDA

View Full Version : درخواست کلاس jquery alert



zerocool151
پنج شنبه 03 اسفند 1391, 18:35 عصر
با سلام
ممنون میشم یک کلاس jquery alert با شکل و شمایل زیبا برام بزارید
من از همون alert جاوا استفاده میکنم که خیلی سادس
وقتم خیلی کمه
پیشاپیش ممنونم
من الان ازین کلاس استفاده میکنم
فقط خیلی سادس
یا مثلا بشه UI همین و تغییر داد,TItle داشته باشه
یا کله صفحه تار نشه و فقط alert رو نشون بده

public static void Show(string message)
{
// Cleans the message to allow single quotation marks
string cleanMessage = message.Replace("'", "\\'");
string script = "<script type=\"text/javascript\">alert('" + cleanMessage + "');</script>";

// Gets the executing web page
Page page = HttpContext.Current.CurrentHandler as Page;

// Checks if the handler is a Page and that the script isn't allready on the Page
if (page != null && !page.ClientScript.IsClientScriptBlockRegistered(" alert"))
{
page.ClientScript.RegisterClientScriptBlock(typeof (Alert), "alert", script);
}
}