1
我的表單中有一個文本框。我有一個類TicketUser,其中訪問器設置爲返回我的標籤中的值。我試圖從標籤內的文本框中獲取值。我試圖讓firstName從我的窗體返回一個txtfirstName.Text的值。請有人請指導我在正確的方向。 Im相當新的ASP.NET從一個類的文本框中返回一個值
public class TicketUser
{
public string firstName;
public string lastName;
public string username;
TicketForm form = new TicketForm();
//property accessors
public string CreateAccountMessage
{
get
{
return "Congratulations" + firstName + "Your account has been created. Your username is" + username;
}
set
{
CreateAccountMessage = value;
}}
//CreateAccount method
public string CreateAccount()
{
return CreateAccountMessage;
}}}
謝謝,那正是我需要的 – user3236592