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 / 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 |
How do we achieve encapsulation in c#?
hi In my database i put id column as identity(the database is incremented by it self only)what i want is if i enter a data in my website, id will come automatically can u pl z tell me the code thax in advance
How do I join one form to another in c#?
what are implementation inheritance and interface inheritance?
What is string empty?
Can partial class be inherited?
What are boxing and unboxing?
Define c# and list the features.
What is a derived class in c#?
What is data types in c#?
What is difference between a type and class?
What is xor operator in c#?