Hi there;
I am new in asp programming , and I'm trying to display a simple asp page with no succes.
I check everything ( guest user or groups permissions as well as on folder/file, the IIS intallation ,...)
I get no error , just a blank page.
Any help please?

Here is the file code :

<html>
<head>
<title>Apron Tutorials</title>
</head>
<body>
<%
'this write Hello new Tutorials
Response.Write("Hello new Tutorials");
%>
</body>
</html>

Best regards

In a normal IIS environment with default configuration, you should get an error page when you try to run your ASP page. Because there is a ";" at the end of the line that begins with response.write. I suggest you trying to run your ASP page again without that ";". It should work.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.