X
Xarky
Hi,
I have the following piece of code. In reality it is a menu which has
more options. The main idea was taken from the following link.
http://msdn.microsoft.com/library/d...ta/html/OfficeFrontPageCreateDropDownMenu.asp
<table class="navbar" width="100%">
<tr>
<td class="menuNormal" width="20%">
<p>Sign out</p>
</td>
</tr>
</table>
On the sign out option I require an onmousedown() event, that when
fires, does the following operations.
{
Session["UserID"] = "";
Response.Redirect(...to login page);
}
Can someone help me doing it.
Thanks in Advance
I have the following piece of code. In reality it is a menu which has
more options. The main idea was taken from the following link.
http://msdn.microsoft.com/library/d...ta/html/OfficeFrontPageCreateDropDownMenu.asp
<table class="navbar" width="100%">
<tr>
<td class="menuNormal" width="20%">
<p>Sign out</p>
</td>
</tr>
</table>
On the sign out option I require an onmousedown() event, that when
fires, does the following operations.
{
Session["UserID"] = "";
Response.Redirect(...to login page);
}
Can someone help me doing it.
Thanks in Advance