hi,
plz anyone one send how to create personal web page using asp coding.


thank u.

Dani AI

Generated

For a quick, practical start: first decide whether you mean classic ASP (the old server-side VBScript/JScript model) or ASP.NET (a newer, very different framework). pointed to ASP.NET and asked the same key question — that choice changes everything. For a one-page personal site you can also use plain HTML/CSS and add server features only when you need them. If you must use classic ASP (maintaining old code or learning it), the steps below assume that.

Set up a test environment on Windows. Enable IIS and the Classic ASP feature in IIS Manager, create a site folder under inetpub\wwwroot\yourname, and place a default.asp file there so you can browse http://localhost/yourname. Use a simple text editor to edit .asp files. If you deploy to a host, confirm the host supports Classic ASP and that ASP is enabled for your site.

Focus on structure and safety from the start. Keep layout in include files (for example <!--#include file="header.inc"-->) and put reusable logic into separate files or components. For form handling use Request.Form/Request.QueryString and always sanitize/encode output with Server.HTMLEncode. Use ADODB/parameterized queries or stored procedures for database access, store credentials outside the web root or in a secured config, and avoid embedding secrets in publicly writable folders. Use Session and cookies for small state, and use CDO sparingly for email.

Troubleshooting tips: enable detailed errors on localhost when developing (IIS handy setting), check Event Viewer for server errors, and verify NTFS/IIS permissions if you see 401/403. ’s quick snippets are fine as learning toys, but build real pages with input validation, error handling, and separated presentation/logic. If starting fresh today, consider moving to a modern stack later — Classic ASP is supported but legacy.

Recommended Answers

All 6 Replies

Member Avatar for Member #204632

if you'd ask google before asking here you'd know...
but anyways...here: this will get you started!
http://www.asp.net/

Do you mean classic ASP or ASP.NET?

<%
Response.Write("Hello Me")
%>

hi,
plz anyone one send how to create personal web page using asp coding.


thank u.

<%@ Language=VBScript %>
<html>
<head>
<title>Example 1</title>
</head>
<body>
<%
FirstVar = "Hello world!"
%>
<%=FirstVar%>
</body>
</html>

hi,
plz anyone one send how to create personal web page using asp coding.


thank u.

<%
you code

%>

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.