我已經創建了一個簡單的雲網絡角色,並在那裏有一個ASP.NET web表單。我有一個文本框,我應該能夠寫幾個文本,並在點擊提交按鈕後,我想顯示文本。文本框和按鈕都放在表單中。顯示文本框中的內容
因爲我是很新的Viasual工作室,我不知道如何通過編寫C#代碼aspx.cs
類顯示文本
這是我曾嘗試:
的.aspx類:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body style="height: 435px">
<form id="form1" runat="server">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<p>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click1" Text="Button" />
</p>
</form>
</body>
</html>
.aspx.cs類:
namespace WebRole1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
form1.InnerText = TextBox1.Text;
}
}
}
請參閱一些基本教程第一。 –