ASP.NET\DreamWeaver

  • Thread starter Thread starter rj
  • Start date Start date
R

rj

We are developing an ASP.NET website that will provide databasae access
to the users, for ordering and looking up different information. The
static website is developed in Dream Weaver and this is where the user
will supply the logon information to get into the ASP.NET application.
We would like to have it appear to the user as one site, so if they are
on the static site or database site, it would appear as the same site to
the user. Can this be done?

TIA
 
ASP.NET is a server-side programming language which you can use to make your
pages more dynamic. Use ASP.NET in only the pages required and leave the
static page as is (.html)

Maz.
 
Not always, you can choose to use cookieless session handling. In
cookieless mode, the server automatically inserts the session ID into
relative URLs.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
 
You can associate any file extension to be handled by the asp.net processor
in the IIS settings. So your .aspx pages could in theory be called .htm I
expect.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
 
John:

What I am not sure of is how to make the ASP.NET site co-exist in the
Dreamweaver site. The developer of the Dreamweaver site has links on
various pages, when clicked by the user, will open up an aspx page in
the browser. I also need to store the users information for use between
the two. Will the Dreamweaver site be able to access the .NET Http objects?

TIA
 
Not always, you can choose to use cookieless session handling. In
cookieless mode, the server automatically inserts the session ID into
relative URLs.

True - but I don't think cookieless works with static HTML content ... or
does it?
 
I dont actually know, if you piped the HTML pages via the asp.net ISAPI
handler then you could quickly find out....

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top