
and getting data in another page like this :

The data in MySQL :




Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tirthak ShahPosted Dec 26, 2013, 7:42 AM
EX::
string birthday=txtday.text+"-"+txtmonth.text+"-"+txtyear.text;
Now you have to parse this "birthday" to mysql as parameter (@birthday=birthday)
And Finally Your Query Like This
"select * from user where account_no=@account_no and day+"-"+month+"-"year+=@birthday"
Stored This in the viewstate or sessionstate and use this to the another Page.
Thanx And regards,
Tirthak Shah