1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
protected void Page_Load(object sender, EventArgs e)
{
try
{
System.Web.HttpBrowserCapabilities browser = Request.Browser;
if (browser.Browser != "IE")
{
Response.Write(@"<SCRIPT LANGUAGE=""JavaScript"">alert('This application is only supported in Internet Explorer. Please use this browser to access this page.')</SCRIPT>");
bntAmend.Enabled = false;
btnReject.Enabled = false;
btnApprove.Enabled = false;
lblError.Text = "Error: This application is only supported in Internet Explorer. Please use this browser to access this page.";
}
}
catch (Exception ex)
{
lblError.Text = "Error: " + ex.Message;
}
} |
Partager