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
Can we extend sealed class in c#?
How do you escape in c#?
What is check/uncheck?
What is the purpose of a namespace?
Can non-default constructors be used with single call sao?
List down the commonly used types of exceptions in .net
what is IDisposal interface,IComparable,IEquatable,IFormatable
Is system a class in c#?
Name the two classes are required for implementing a windows service?
Is c# code is unmanaged or managed code?
How do I type a whitespace character?
What is the diff between System.String and System.Text.StringBuilder classes?
What is the use of functional interface?
What does console writeline do?
What is local function?