14 lines
327 B
Plaintext
14 lines
327 B
Plaintext
|
<%@ Page Language="C#" %>
|
||
|
<html>
|
||
|
<head><title>unquoted angle brackets</title></head>
|
||
|
<body>
|
||
|
<form runat="server">
|
||
|
<asp:DropDownList runat="server">
|
||
|
<asp:ListItem Value=">"> > </asp:ListItem>
|
||
|
<asp:ListItem Value="="> = </asp:ListItem>
|
||
|
<asp:ListItem Value="<"> < </asp:ListItem>
|
||
|
</asp:DropDownList>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|