link to ASP .NET page from HTML site

SteveInBeloit

Well-known member
Joined
May 22, 2006
Messages
132
Programming Experience
10+
Hi,
The folks I am working with have an HTML site, with a URL that points to it. They asked me to write them a couple of ASP .NET pages so they could access a database, which I have done. Once loaded to IIS, how do they link to my pages from their HTML site?
Thanks
Steve
 
I must not be understanding the question. This is a very simple thing.
HTML:
<a href="http://domainName.com/nameofdotnetfile.aspx">Click to see the ASP.NET page</a>
 
Back
Top