c# - Control Names on QueryString different in IIS-8 Classic Mode -
we have moved application windows server 2003 iis-6 new windows 2012 server iis-8 , setup app pool "classic". problem existing code pulls value off query string in controller method using querystring.
string tmpid= request[string.format("disabilityrepeater:_ctl{0}:dddisability", num)];
i have hit old , new site , format of control has changed. consistently different between platforms , not affected browser.
for example here name querystring in iis-6:
disabilityrepeater:_ctl1:dddisability
and iis-8:
disabilityrepeater$ctl01$dddisability
i have searched "breaking change" name munging have been unable find solution in configuration.
i make code change, migrating application on server 2003 server 2012 , includes 75 applications , configuration update preferable.
Comments
Post a Comment