Hi decojute,
I apologize if my question is confusing for you. I was being concise and thought it was understandable. However, I know now that it isnt. So let me take a second shot at it.
Here is my situation. As you may know already, when you sign up for webhosting, you have the option of creating many email accounts. You know, like pop3,Imap,Smtp, and sometimes its web-based also.
Now thats great, I thought. However, after carefully examing it, Id realized that I dont have much control over it. For instance, I cant customize the look and feel of the inbox and login page, or code my own user validations. Therefore, I cant integrate it with my website so that it looks smooth and seamless.
The best and easy way, I think, would just to go buy and install my own mail server program. But thats alot of money for me. Im just going to take what I already have, applied some codes here and there, to see what I can get it to do.
Ok, so I cant customize the inbox page, but I can put the login text field and buttons onto my page. That way users can login from my page. And so, I put the login fields into my page. And it works. However, everytime a user type in the wrong username and password, it redirect them to the original login page and ask them to check for errors.
Now thats ugly. Remeber, the challenge is to make the process look smooth and seamless as possible.
To prevent it from redirecting users to its original login page, I thought maybe I can use asp to validate the username and passwood first before posting. The validating process will have to be done in the server-side. Therefore, using javascript is out of that question.
My scenerio,
The user comes to my page. The users input their username, password, and press the submit button. The submit button will not post to the form action, instead, it will take the inputs and give it to asp, to validate the username and password. If the inputs are valid, then asp will take the inputs and post it to the form action, and the user will be sign-in. If the inputs are not valid then asp will do a Response.Write("Invalid input!"

, prompting users to check their inputs.
Now heres my question.
After ASP has confirmed that the inputs are valid, how do I get ASP to post the inputs to a form action?
Once I get this to work, I think it may now be possible to customize the whole email pages. I hope my situation is a little bit clearer now. I welcome any suggestions you can give. Thankx in advance.