page validation framework 1.1

  • Thread starter Thread starter Sergio
  • Start date Start date
S

Sergio

Hi there,
I have page using validation controls. The page works
fine in framework 1.0 but now that I am testing it in
framework 1.1 does not work. It does not do the
validation..
any ideas ?
thank you
sergio
p.s. This incompatibility is becoming the DLL hell
in .NET.
 
It is most likely a small change in the way the controls are formatted in
the tag. As for the PS, most of the changes do not break anything, but like
anything in life, there are growing pains.

You can run 1.0 on a 1.0/1.1 dual machine fairly easy, to avoid the "DLL
hell". You specify, in the config file, which Framework to run under. With
web apps, you may also have to map back in IIS manager, but that is fairly
simple. I have yet to have an app that will not work on a dual machine if
specified (via one of these methods) to run 1.0.

--
Gregory A. Beamer
MPV; MCP: +I, SE, SD, DBA

**********************************************************************
Think outside the box!
**********************************************************************
 
I just installed Framework 1.0 and also changed the
config file to:
<configuration>
<startup>
<supportedRuntime version="v1.1.4322" />
<supportedRuntime version="v1.0.3705" />
</startup>
</configuration>

But still does not work. The page does run the control
validations.

Any ideas ?
Thanks,

Sergio



-----Original Message-----
 
Correction:
<configuration>
<startup>
<supportedRuntime version="v1.0.3705" />
</startup>
</configuration>
 
Back
Top