Files
2018-08-02 17:53:23 +01:00

18 lines
293 B
Plaintext

<%@ Page Language="C#" %>
<script runat="server">
Label1.Text = "This is a label";
</script>
<html
<body>
<asp:Label ID="Label1"/>
<p>2 + 3 = <%=2 + 3%></p>
<p>2 + 3 = <%Response.write(2 + 3)%></p>
<img href=<%=chooseImage()%>/>
</body>
</html>
<!--client comment-->
<%--server comment--%>