Click here to Skip to main content
15,892,059 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: MVC 3 Pin
ElangPitak9-Feb-12 15:25
ElangPitak9-Feb-12 15:25 
QuestionFocus on differnt radio boxes lists client side Pin
byka4-Jan-12 8:06
byka4-Jan-12 8:06 
AnswerRe: Focus on differnt radio boxes lists client side Pin
manognya kota9-Jan-12 0:57
manognya kota9-Jan-12 0:57 
QuestionVery strange problem loading my web application pages Pin
Renukapadhamanaban3-Jan-12 17:24
Renukapadhamanaban3-Jan-12 17:24 
AnswerRe: Very strange problem loading my web application pages Pin
Renukapadhamanaban4-Jan-12 13:00
Renukapadhamanaban4-Jan-12 13:00 
GeneralRe: Very strange problem loading my web application pages Pin
Ganesan Senthilvel6-Jan-12 20:04
Ganesan Senthilvel6-Jan-12 20:04 
QuestionHow to disable or enable the html li of UI menu or child menu based on user level condition in ASP.net. Pin
sr1592-Jan-12 19:57
sr1592-Jan-12 19:57 
AnswerRe: How to disable or enable the html li of UI menu or child menu based on user level condition in ASP.net. Pin
R. Giskard Reventlov10-Jan-12 4:57
R. Giskard Reventlov10-Jan-12 4:57 
One way to do this would be from code behind. The first thing you would need to do is to make the menu options into server controls. Either replace with, for instance, asp:Hyperlink or add ID="unique_name_for_control" and runat="server" to each link and then, from the OnLoad event determine the user rights and then apply ass appropriate to each menu item. For instance, if User1 can see item 1 but not item 2 you might have code like:

C#
bool canSeeItems = GetUserRights("this_user");
item1.Visible = canSeeItems;
item2.Visible != canSeeItems;


Very simplistic but you can expand from this.
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
nils illegitimus carborundum

me, me, me

QuestionHow to fit Crystal Report within scrollbar and should not exceed masterpage Pin
sr15928-Dec-11 22:15
sr15928-Dec-11 22:15 
AnswerRe: How to fit Crystal Report within scrollbar and should not exceed masterpage Pin
jschell29-Dec-11 14:04
jschell29-Dec-11 14:04 
AnswerRe: How to fit Crystal Report within scrollbar and should not exceed masterpage Pin
Shameel30-Dec-11 8:55
professionalShameel30-Dec-11 8:55 
QuestionDigital signature in c# Pin
Member 827910227-Dec-11 3:13
Member 827910227-Dec-11 3:13 
AnswerRe: Digital signature in c# Pin
jschell27-Dec-11 10:11
jschell27-Dec-11 10:11 
QuestionUploading Pin
saadullah Bhutto25-Dec-11 9:29
saadullah Bhutto25-Dec-11 9:29 
AnswerRe: Uploading Pin
jschell26-Dec-11 8:40
jschell26-Dec-11 8:40 
AnswerRe: Uploading Pin
Shameel26-Dec-11 18:32
professionalShameel26-Dec-11 18:32 
AnswerRe: Uploading Pin
keyur satyadev26-Dec-11 23:57
keyur satyadev26-Dec-11 23:57 
GeneralRe: Uploading Pin
jschell27-Dec-11 10:03
jschell27-Dec-11 10:03 
QuestionFind the location of text in an image (OCR or any other method) Pin
Mohammad Gufran21-Dec-11 9:19
Mohammad Gufran21-Dec-11 9:19 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
Richard MacCutchan21-Dec-11 10:04
mveRichard MacCutchan21-Dec-11 10:04 
GeneralRe: Find the location of text in an image (OCR or any other method) Pin
Mohammad Gufran21-Dec-11 23:33
Mohammad Gufran21-Dec-11 23:33 
GeneralRe: Find the location of text in an image (OCR or any other method) Pin
Luc Pattyn22-Dec-11 0:45
sitebuilderLuc Pattyn22-Dec-11 0:45 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
jschell22-Dec-11 7:42
jschell22-Dec-11 7:42 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
jan fry25-Dec-11 21:53
jan fry25-Dec-11 21:53 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
Kangerm00se26-Jan-12 20:50
Kangerm00se26-Jan-12 20:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.