Forum: ASP.NET Jun 29th, 2009 |
| Replies: 5 Views: 2,117 hi..actually i am developing a web application wherein i need to print barcodes at client side.
i have the PCL file that would print the barcode but the problem lies in printing at the client side... |
Forum: ASP.NET May 21st, 2009 |
| Replies: 1 Views: 1,406 <html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript"> |
Forum: ASP.NET May 19th, 2009 |
| Replies: 3 Views: 431 if thats the case then you just need to show the required pages..i mean its upto u what pages u want to give access to...to remove the menus simple dont show them...
i had a similar requirement but... |
Forum: ASP.NET May 18th, 2009 |
| Replies: 3 Views: 431 you can save the role in a session variable and accordingly show the respective pages..
eg.
if(txtusername.Text=="ADMIN")
{
show desired pages
}
else
if(txtusername.Text=="USER")
{
show... |