D
DMan
I have a sequence of Webforms that each call the same class (and the same
method) to retrieve data. A code is stored in hidden fields, then
requested, and passed on to the class so the class can do formatting based
on this code.
The challenge? The code being passed along in hidden fields was just
recently added. The class interface (method signatures) CANNOT be changed
at all....the problem is that on the FIRST page where this code is actually
retrieved, it is NOT in the Request object (obviously) and I need the class
to retrieve this code even on the first page. So, Can I force something
into the Request object on the first page (since it is not submitted,
remembering that I cannot change the method signature to include the code).
Any other options?
Thanks..
method) to retrieve data. A code is stored in hidden fields, then
requested, and passed on to the class so the class can do formatting based
on this code.
The challenge? The code being passed along in hidden fields was just
recently added. The class interface (method signatures) CANNOT be changed
at all....the problem is that on the FIRST page where this code is actually
retrieved, it is NOT in the Request object (obviously) and I need the class
to retrieve this code even on the first page. So, Can I force something
into the Request object on the first page (since it is not submitted,
remembering that I cannot change the method signature to include the code).
Any other options?
Thanks..