i have a table named login in mysql database containing
(empid,fname,lname,mobno,emailid,usrname,usrpwd)
i have 2 textboxes in which i enter my username and pwd..so
based on what is entered in those textboxes it should
retreive all other details of dat username in the remaining
6 textboxes..i want the code for this...
Answer Posted / arush
SELECT empid,fname,lname,mobno,emailid FROM login where
usrname ='Textbox1.Text' and usrpwd ='Textbox2.Text';
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is c# entity framework?
Explain about WSDL
Is c# good for web development?
What is xpath in c#?
What is namespace c#?
Why is lazy loading?
What is c# used for?
What does f mean in c#?
Define satellite assembly in c#?
Explain Direct CAST vs CType ?
What is int32 maxvalue?
What is Covariance and contravariance in C#?
Is datetime value type c#?
Are classes passed by reference in c#?
How to implement an object pool in c#.net.