I am having difficulty with masterpage that I'm currently working on. The situation is this:
I have a site with master page that has a webmail login portion on it (username, password, remember me, etc.). The problem I have is that since my webmail application is not part of this site, I am using the PostBackUrl property of the login button to post the page to the login page of the webmail app.
This all works fine when I am working with a single page. When I stick it on a master page the INaming model changes the names of my textboxes and since my webmail app is looking for specific POST parameters which are "username" and "password", after the INaming get's done rendering my page the controls are named ct00$username and ct00$password.
A viable solution would be to hand craft the http POST operation in the code behind, or some other trickery to create and set the POST parameters I need.
Thanks for all the help in advance.