<!DOCTYPE Html>
<html>
<head>
<title> ASP.Net Web Forms </title>
</head>
<body>
<h3>
ServerDate: <%Responce.Write(DateTime.Now.ToShortDateString())%>
</br>
ServerTime: <%Responce.Write(DateTime.Now.ToShortTimeString())%>
</h3>
</body>
</html>
This is my code. I got an error as 'Responce' is not declared. What to do now?