hi to all,
my question is how can I send textBox that contain int to sql? in my case "this.txtCommission.text".
ws.wupdate(this
.txtEmail.Text, this.txtPassword.Text, this.txtCommission.text);thank's in advance
hi to all,
my question is how can I send textBox that contain int to sql? in my case "this.txtCommission.text".
ws.wupdate(this
.txtEmail.Text, this.txtPassword.Text, this.txtCommission.text);thank's in advance
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.
maliPosted Nov 27, 2008, 1:21 PM
everything ok;
my answer to my question work fine.
if you still want me to send you the webmathod just say or post
Ryan AlfordPosted Nov 27, 2008, 10:34 AM
maliPosted Nov 27, 2008, 10:08 AM
the Idea is to update the data via textBox, and after a few experiments this is what I find:
ws.wupdate(this.txtEmail.Text, this.txtPassword.Text, (int)int.parse(this.txtCommission.text);
because I have more error I can't say for sure if its work, but for now I at least can compile
Niradhip ChakrabortyPosted Nov 26, 2008, 3:52 PM