2
<HTML>
<HEAD>
<TITLE>Seu título aqui</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<%
response.write("Hello world")
%>
</BODY>
</HTML>
2
<HTML>
<HEAD>
<TITLE>Seu título aqui</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<%
response.write("Hello world")
%>
</BODY>
</HTML>
1
First, by default, when you open a site in Visual Studio, you’re opening through the file system
, couldn’t see IIS
. Therefore, Visual Studio uses an internal web server called Cassini
, instead of the IIS
.
The web server Cassini
DOES NOT RUN CLASSIC ASP. The IIS
yes. So the first thing you need to do is figure out how to debug IIS
.
You need to have the IIS
installed on the machine you are working on, and have the website you are using configured in the same way as the server. (So you can perform http: // localhost / algumapasta and see their website)
Also need to attach to running process
of Internet Explorer.
Next, you need to make Visual Studio recognize the IIS
and run your website instead of using the built-in web server; and enable debugging.
To see a step-by-step with images (it is old but should still work) of this setting, take a look at this codeproject article.
It’s really a little confusing, but I hope I’ve helped.
Browser other questions tagged visual-studio asp
You are not signed in. Login or sign up in order to post.
All versions.
– dHEKU