mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
325 B
Plaintext
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--%>
|