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 |
What is constructor overloading in c#?
Is there any sample c# code for simple threading?
What is ienumerable and iqueryable?
How can you access a private method of a class?
What is Lambda Expression?
Write a syntax for writing a event delegate.
Is system a class in c#?
What is class and object c#?
What is the difference between select and selectmany?
How structure objects are destroyed? As GC releases only the objects in stack, and structure is a value type and stored in heap. So how structure objects are released?
Can an interface inherit an interface
How to declares a two-dimensional array in C#?