Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
QuestionHow to know that connection is idle Pin
Mahmoud Zidan19-Jul-07 1:22
Mahmoud Zidan19-Jul-07 1:22 
AnswerRe: How to know that connection is idle Pin
Sathesh Sakthivel19-Jul-07 1:26
Sathesh Sakthivel19-Jul-07 1:26 
GeneralRe: How to know that connection is idle Pin
Mahmoud Zidan19-Jul-07 2:01
Mahmoud Zidan19-Jul-07 2:01 
QuestionPitch Extraction Pin
Guybrush8619-Jul-07 1:15
Guybrush8619-Jul-07 1:15 
AnswerRe: Pitch Extraction Pin
ekynox19-Jul-07 1:57
ekynox19-Jul-07 1:57 
AnswerRe: Pitch Extraction Pin
ekynox22-Jul-07 0:42
ekynox22-Jul-07 0:42 
GeneralRe: Pitch Extraction Pin
Guybrush8622-Jul-07 3:44
Guybrush8622-Jul-07 3:44 
Questionstatus problem Pin
srinivassam19-Jul-07 0:56
srinivassam19-Jul-07 0:56 
hello all,
in my database i took empid ,username,password, status,usertype
for status =1 is for admin
status=2 for normal user
in my code it doesn't work
please see my code
depends on status my page goes to that page.
<pre>
SqlConnection con= new SqlConnection ("uid=sa; password=sa123; database=usermanagement; server=c113");
SqlCommand cmd=new SqlCommand ("select * from tbl_user_management",con);


SqlDataReader dr;
con.Open ();
dr=cmd.ExecuteReader ();
con .Close ();
Lbluser .Text ="";
Lblpassword .Text ="";
Txtusername .Text ="username";
Txtpassword .Text ="password";
int status;
//status= dr["status"];
//int status;
status=Convert.ToInt32(1);
if(status==1)
{
//status=Convert.ToInt32 ("1");
Response .Redirect ("admin.aspx");
}

else if (status==2)
{
//status=Convert.ToInt32 ("2");
Response .Redirect ("Welcome.aspx");
}

srinivas
AnswerRe: status problem Pin
Eduard Keilholz19-Jul-07 0:59
Eduard Keilholz19-Jul-07 0:59 
AnswerRe: status problem Pin
Martin#19-Jul-07 1:01
Martin#19-Jul-07 1:01 
AnswerRe: status problem Pin
Herman<T>.Instance19-Jul-07 1:09
Herman<T>.Instance19-Jul-07 1:09 
GeneralRe: status problem Pin
srinivassam19-Jul-07 20:59
srinivassam19-Jul-07 20:59 
QuestionRun as? Pin
Captain Trips19-Jul-07 0:55
Captain Trips19-Jul-07 0:55 
AnswerRe: Run as? Pin
originSH19-Jul-07 1:12
originSH19-Jul-07 1:12 
QuestionThreading and delegate relation. Pin
Ron.S19-Jul-07 0:50
Ron.S19-Jul-07 0:50 
AnswerRe: Threading and delegate relation. Pin
Eduard Keilholz19-Jul-07 0:54
Eduard Keilholz19-Jul-07 0:54 
AnswerRe: Threading and delegate relation. Pin
Bijesh19-Jul-07 2:14
Bijesh19-Jul-07 2:14 
QuestionHow to pass a Control to a Method Pin
Herman<T>.Instance19-Jul-07 0:21
Herman<T>.Instance19-Jul-07 0:21 
AnswerRe: How to pass a Control to a Method Pin
Luc Pattyn19-Jul-07 0:35
sitebuilderLuc Pattyn19-Jul-07 0:35 
Questionentry point of OLE DB Provider Pin
George_George19-Jul-07 0:18
George_George19-Jul-07 0:18 
QuestionArraySorting: Pin
T.RATHA KRISHNAN19-Jul-07 0:08
T.RATHA KRISHNAN19-Jul-07 0:08 
AnswerRe: ArraySorting: Pin
Luc Pattyn19-Jul-07 0:19
sitebuilderLuc Pattyn19-Jul-07 0:19 
QuestionRe: ArraySorting: Pin
T.RATHA KRISHNAN19-Jul-07 0:23
T.RATHA KRISHNAN19-Jul-07 0:23 
AnswerRe: ArraySorting: Pin
CPallini19-Jul-07 0:22
mveCPallini19-Jul-07 0:22 
AnswerRe: ArraySorting: Pin
Luc Pattyn19-Jul-07 0:27
sitebuilderLuc Pattyn19-Jul-07 0:27 

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.