aspdotnet_website_programming thread: Additional Admin Form
I am looking to obtain some suggestions on how to add an additional message screen which tells you that you must be logged on as admin@t... to avoid error with app. Any feedback would be most useful Regards Wayne
> I am looking to obtain some suggestions on how to add an additional
m> essage screen which tells you that you must be logged on as
a> dmin@t... to avoid error with app.
> Any feedback would be most useful
> Regards
> Wayne
try
{
}catch(Exception excp)
{
Response.Redirect("youshouldlogasanadminstrator.aspx");
}
see also http://www.icsharpcode.net/OpenSource/SD/Forum/topic.asp?
TOPIC_ID=1753
|





