所以我對aspx文件的條件:C#參數不能ASPX被檢測到
<% if (yes)
{%>
{
<div>
<h1>hell yes!!</h1>
<p>Welcome</p>
</div>
<%}%>/
,這裏是我的頁面加載
protected void Page_Load(object sender, EventArgs e)
{
if (accnt != null)
{
using (SqlConnection conn = new SqlConnection(connectionstring))
{
conn.Open();
string strSql = "select statement"
:
:
try
{
if (intExists > 0)
{
bool yes= check(accnt);
}
}
catch
{
}
}
}
我獲取代碼錯誤:
CS0103: The name 'yes' does not exist in the current context
我不知道我做錯了什麼......
這是否意味着我可以除非我把它變成全局的,否則不會使用該變量來檢查狀態嗎? – gdubs 2011-03-10 20:02:03
@gdubs:不是全局的實例級別。 – SLaks 2011-03-10 20:06:51