Click here to Skip to main content
15,925,181 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: The name 'Menu1' does not exist in the current context Pin
Christian Graus8-Apr-08 0:10
protectorChristian Graus8-Apr-08 0:10 
GeneralRe: The name 'Menu1' does not exist in the current context Pin
Herman<T>.Instance8-Apr-08 4:35
Herman<T>.Instance8-Apr-08 4:35 
QuestionI have to implement field level security Pin
Syed Kamran ul Haq7-Apr-08 23:17
Syed Kamran ul Haq7-Apr-08 23:17 
GeneralRe: I have to implement field level security Pin
eyeseetee7-Apr-08 23:29
eyeseetee7-Apr-08 23:29 
GeneralRe: I have to implement field level security Pin
N a v a n e e t h7-Apr-08 23:36
N a v a n e e t h7-Apr-08 23:36 
GeneralRe: I have to implement field level security Pin
Syed Kamran ul Haq7-Apr-08 23:50
Syed Kamran ul Haq7-Apr-08 23:50 
GeneralRe: I have to implement field level security Pin
N a v a n e e t h8-Apr-08 0:05
N a v a n e e t h8-Apr-08 0:05 
GeneralRe: I have to implement field level security Pin
eyeseetee8-Apr-08 0:08
eyeseetee8-Apr-08 0:08 
You should use the standard asp.net login control and then through the web configuration you can then asign rights to users.

If you dont want to do that use the following:
Put a column in your login table and call it permissions, then set the permissions as so:
User1 rights = 0
Admin rights = 1

then just check this value in your c# code e.g.

if (rights = 1)
{
txt1.enabled = true;
}
else
{
txt1.enabled = false;
}

something like that, remember what Ive written is half pesudo code so you just need to amend that
Smile | :)
GeneralRe: I have to implement field level security Pin
Christian Graus8-Apr-08 0:11
protectorChristian Graus8-Apr-08 0:11 
GeneralProblem in moving text from one textbox to another Pin
Deepak Nigam7-Apr-08 22:46
Deepak Nigam7-Apr-08 22:46 
GeneralRe: Problem in moving text from one textbox to another Pin
Christian Graus7-Apr-08 23:00
protectorChristian Graus7-Apr-08 23:00 
QuestionHow to Process name Pin
ILLUSIONARY LIFE7-Apr-08 22:41
ILLUSIONARY LIFE7-Apr-08 22:41 
AnswerRe: How to Process name Pin
Christian Graus7-Apr-08 22:58
protectorChristian Graus7-Apr-08 22:58 
GeneralProblem with onrowcreate in gridview Pin
eyeseetee7-Apr-08 21:48
eyeseetee7-Apr-08 21:48 
GeneralRe: Problem with onrowcreate in gridview Pin
Christian Graus7-Apr-08 21:52
protectorChristian Graus7-Apr-08 21:52 
GeneralRe: Problem with onrowcreate in gridview Pin
eyeseetee7-Apr-08 21:58
eyeseetee7-Apr-08 21:58 
GeneralRe: Problem with onrowcreate in gridview Pin
Christian Graus7-Apr-08 22:21
protectorChristian Graus7-Apr-08 22:21 
GeneralRe: Problem with onrowcreate in gridview Pin
eyeseetee7-Apr-08 22:30
eyeseetee7-Apr-08 22:30 
GeneralRe: Problem with onrowcreate in gridview Pin
Christian Graus7-Apr-08 22:32
protectorChristian Graus7-Apr-08 22:32 
GeneralImage Transparency Pin
Reelix7-Apr-08 21:43
Reelix7-Apr-08 21:43 
GeneralRe: Image Transparency Pin
Christian Graus7-Apr-08 21:49
protectorChristian Graus7-Apr-08 21:49 
GeneralRe: Image Transparency Pin
Reelix8-Apr-08 4:33
Reelix8-Apr-08 4:33 
GeneralOnloine Payment Pin
Member 46590017-Apr-08 21:34
Member 46590017-Apr-08 21:34 
GeneralRe: Onloine Payment Pin
eyeseetee7-Apr-08 21:39
eyeseetee7-Apr-08 21:39 
QuestionHow to use MathML Control Pin
yogesh_kumar_agarwal7-Apr-08 21:15
yogesh_kumar_agarwal7-Apr-08 21:15 

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.