Converting classic asp web app to .net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jrod11
    New Member
    • Apr 2009
    • 49

    Converting classic asp web app to .net

    I am wrapping up a new website redesign that used to be in classic asp, but I have converted the new one to be .Net.

    The old site had a login screen that would bring up the web app once logged in.

    My question is what steps should i take so that the new website (.net) can login to the web app (classic asp in different folder)?

    All suggestions are appreciated!
  • balame2004
    New Member
    • Mar 2008
    • 142

    #2
    If you created a login page in asp.net and want to redirect to asp page in kept in someother folder please do the following.

    Respones.Redire ct("https://localhost..../YourAspfolder/yourAspPage.asp ");

    You should complete url of your asp page. Don't worry about the folder where your asp page located.

    Comment

    Working...