Я работаю с сайтом asp.net, используя C # в фоновом режиме. Я хотел бы иметь возможность обновить ярлык asp: на странице, скажем, Page1.aspx . Я хочу, чтобы это было обновлено в зависимости от результата функции в классе (.cs) в другой папке. Это может быть позади.cs .
behind.cs
*some other code is here*
bool correct = false;
try
{
if (_myConn.State == ConnectionState.Closed)
{
_myConn.Open();
myCommand.ExecuteNonQuery();
}
if (Convert.ToInt32(myCommand.Parameters["@SQLVAR"].Value) < 1)
{
"Invalid Login" // I want to be the text of lblMessage.Text
}
else
{
correct = true;
}
_myConn.Close();
}
catch (Exception ex)
{
"Error connecting to the database" // I want to be the text of lblMessage.Text
}
return correct;
page1.aspx
<asp:label runat="server" ID="lblMessage" cssClass="error"></asp:label>
Как я могу обновить метку asp: на page1.aspx * из ** behind.cs ??