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
Explain the difference between a namespace and assembly name in .net?
What are the classes contained in a single .NET DLL ?
What is hashtable in c# with example?
Can abstract class have private constructor c#?
How is a strongly-named assembly different from one that isn’t strongly-named?
Is hashset ordered c#?
What is entity framework c#?
What do you use c# for?
Define delay signing?
What is generic delegate in c#?
How do I declare inout arguments in c#?
What is difference between hashtable and dictionary in c#?
What are the main reasons to use c# language?
How do you achieve polymorphism in c#?
Why we use get and set method in c#?