Files
codeql/csharp/ql/test/library-tests/asp/basic/test.aspx
2018-08-02 17:53:23 +01:00

18 lines
325 B
Plaintext

<%@ Page Language="C#" Inherits="Test.CodeBehindPage" %>
<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--%>