これをどのように実装しますか?
ユーザーはに任意のテキストを入力しTextbox1
、クリックSubmitbtn1
して結果を。に表示できますGridview1
。Clearbtn1
Textbox1のすべてのテキストをクリアするために使用されます。
これはすべて、Visual StudioASP.NETWebアプリケーションで行われます。
これは私がこれまでに行ったことです:
namespace SearchApplication
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void EmptyTextBoxValues(Control parent)
{
foreach (Control c in parent.Controls)
{
if ((c.Controls.Count > 0))
{
EmptyTextBoxValues(c);
}
else
{
if (c.GetType().ToString().Equals("System.Web.UI.WebControls.TextBox"))
{
((TextBox)(c)).Text = "";
}
else
{
//do nothing
}
}
}
}
protected void Button2_Click(object sender, EventArgs e)
{
EmptyTextBoxValues(this.Page);
}
protected void Button1_Click1(object sender, EventArgs e)
{
}
}
}