Link to home
Start Free TrialLog in
Avatar of Mike Eghtebas
Mike EghtebasFlag for United States of America

asked on

Running apache project in ASP

I am following a simple sample html with js to work in Apache server. With my vs 2010, I don't have IIS active. I don't have www folder (as in apache where the files could be placed).

Question: How do I need to transform this sample code to work in asp.net 4.0?

Thank you.

Here is the existing html:
<html>
<head>
	<title>Make Your Own Bingo Card</title>
	<link rel="stylesheet" rev="stylesheet" href="script.css" />
	<script type="text/javascript" src="script.js">
	</script>
</head>
<body>
<h1>Create A Bingo Card</h1>
<table>
	<tr>
		<th width="20%">B</th>
		<th width="20%">I</th>
		<th width="20%">N</th>
		<th width="20%">G</th>
		<th width="20%">O</th>
	</tr>
	<tr>
		<td id="square0">&nbsp;</td>
		<td id="square1">&nbsp;</td>
		<td id="square2">&nbsp;</td>
		<td id="square3">&nbsp;</td>
		<td id="square4">&nbsp;</td>
	</tr>
	<tr>
		<td id="square5">&nbsp;</td>
		<td id="square6">&nbsp;</td>
		<td id="square7">&nbsp;</td>
		<td id="square8">&nbsp;</td>
		<td id="square9">&nbsp;</td>
	</tr>
	<tr>
		<td id="square10">&nbsp;</td>
		<td id="square11">&nbsp;</td>
		<td id="free">Free</td>
		<td id="square12">&nbsp;</td>
		<td id="square13">&nbsp;</td>
	</tr>
	<tr>
		<td id="square14">&nbsp;</td>
		<td id="square15">&nbsp;</td>
		<td id="square16">&nbsp;</td>
		<td id="square17">&nbsp;</td>
		<td id="square18">&nbsp;</td>
	</tr>
	<tr>
		<td id="square19">&nbsp;</td>
		<td id="square20">&nbsp;</td>
		<td id="square21">&nbsp;</td>
		<td id="square22">&nbsp;</td>
		<td id="square23">&nbsp;</td>
	</tr>
</table>
<p><a href="script.html" id="reload">Click here</a> to create a new card</p>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike Eghtebas

ASKER

Thank you.