2
Answers

Error Message: BC30451: Name Responce is not declared

Sriram Ramki

Sriram Ramki

6y
788
1
<!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?
Answers (2)