or
I have a simple RadMaskedTextBox on a page.
When the page is posted back I want to view the text, and am using the TextWithPromptAndLiterals property and just displaying the contents back to the page. This works fine with all variations of input in the field ie. (12x3.4, _2x3_, 1_x_4)
However when the page that the control is on is modified to turn of the viewstate (enableViewState = “False”), the control no longer works.
Values entered as 12x34 work, however values such as 1_x_4, come back as just “1” (loses the four).
I am using the 2009.3.1314.20 version.
select
idRecord.id
from
idRecord
where
id = 123456
into
temp tblTemp
;
select
profileRecord.username
from
profileRecord
where
id
in
(
select
id
from
tbltemp)