I recently become the web dev for my HOA (Home owners association) for the community i live in.
Only problem is the old dev wrote the code in asp, which i know nothing about, i tried to add another page, but no use.
Here is the code (It looks like simple includes):
Code:
<%
Private mstrHeading 'As String
Call Main()
'Begin Module
Private Sub Main()
mstrHeading = Request.QueryString("qryHeading")
If mstrHeading = "" Then
mstrHeading = "Welcome to The ******* HOA Community Website"
End If
End Sub
%>
<html>
<head>
<link rel="StyleSheet" type="text/css" href="css/********.css">
<title>******** HOA</title>
<META NAME="Description" CONTENT="******** HOA">
<META NAME="Keywords" CONTENT="******** HOA">
</head>
<!--#include file="include/top.inc"-->
<!--#include file="include/home.inc"-->
<!--#include file="include/bottom.inc"-->
</body>
</html>
The links look like this: howto.asp?qryHeading=How To
I tried editing the middle include file and changing the name of the file, but no luck, what should i do?