Итак, у меня есть условие для файла 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
Мне было интересно, что я делаю не так ...