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 the difference between gettype and typeof in c#?
Describe the parts of assembly.
Differentiate between sqlclient oledb and providers?
What is a satellite assembly in c#?
Explain the constructor in c#.
What is multicast delegate explain with example?
What is difference between tostring() vs convert.tostring() vs (string) cast
How long can a string be c#?
Illustrate the differences between the system.array.copyto() and system.array.clone()?
Distinguish between finally and finalize blocks?
How many bytes is an int in c#?
Explain copy constructor?
Explain async and await?
What are All kind of access specifiers for a class and for methods
What is a delegate in c#?