Hello,
When I use expression to bound a value to a textbox I would have something like this:
this.textBox2.Value = "=Fields.JobID";
Now, how can I access this value in the code.
I tried:
string str = textbox2.value.ToString();
but I got "=Fields.JobID" which I expected to get an integer number.
I also tried string str = "=Fields.JobID" and it didn't work either.
How can I get this fields value in the code.
Many thanks
When I use expression to bound a value to a textbox I would have something like this:
this.textBox2.Value = "=Fields.JobID";
Now, how can I access this value in the code.
I tried:
string str = textbox2.value.ToString();
but I got "=Fields.JobID" which I expected to get an integer number.
I also tried string str = "=Fields.JobID" and it didn't work either.
How can I get this fields value in the code.
Many thanks