我正在使用C#在後臺使用asp.net網站。我希望能夠更新頁面上的asp:標籤,可以說Page1.aspx。我希望根據其他文件夾中類(.cs)中某個函數的結果進行更新。這可能是behind.cs。更新另一頁上的asp:標籤?
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:從** behind.cs上page1.aspx這個*標籤? ?
完美解釋。非常感謝。 =] – HGomez90