Click here to Skip to main content
15,949,686 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Removing Hard Coded Links Pin
Christian Graus8-Apr-08 2:07
protectorChristian Graus8-Apr-08 2:07 
Generalre-ordering a set of numbers automatically Pin
eyeseetee8-Apr-08 0:20
eyeseetee8-Apr-08 0:20 
GeneralRe: re-ordering a set of numbers automatically Pin
Christian Graus8-Apr-08 0:24
protectorChristian Graus8-Apr-08 0:24 
GeneralRe: re-ordering a set of numbers automatically Pin
eyeseetee8-Apr-08 0:37
eyeseetee8-Apr-08 0:37 
GeneralRe: re-ordering a set of numbers automatically Pin
Christian Graus8-Apr-08 0:47
protectorChristian Graus8-Apr-08 0:47 
GeneralRe: re-ordering a set of numbers automatically Pin
eyeseetee8-Apr-08 1:16
eyeseetee8-Apr-08 1:16 
GeneralThe name 'Menu1' does not exist in the current context Pin
sjs4u7-Apr-08 23:30
sjs4u7-Apr-08 23:30 
GeneralRe: The name 'Menu1' does not exist in the current context Pin
N a v a n e e t h7-Apr-08 23:38
N a v a n e e t h7-Apr-08 23:38 
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 

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.