asp.net

在c#的ASPX页面写IF语句怎么写(IF判断)

2013-06-15
<% int a = 1;
   int b = 2; 
      if (a<b)
 {
Response.Write("<script>alert('正确!')</script>");
}
%>
 
 
<table><tr><td>
  <% if(a>0) //随便来的一个条件 %>idc311.com  <% else %> 我是www.idc311.com
</td></tr></table>
 
 
 
用 <%内嵌代码%> 
比如 :
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>内嵌代码的用法</title>
</head>
<body>
<form id="form1" runat="server">
<%if(DateTime.Now.Hour<12)%>
上午好!
<%else%>
下午好!
</form>
</body>
</html>