如何清空文本框befor ModalPopupExtender显示?

时间:2014-01-14 14:11:09

标签: c#-4.0 asp.net-ajax

我的代码是从文本框中插入文本,我的代码很好,但我想在ModalPopupExtender显示之前清空文本框。我做了我的代码,但它没有用。

 protected void Btn_monthlyemployee_Click(object sender, ImageClickEventArgs e)
{
    var Comment = (TextBox)((ImageButton)sender).Parent.FindControl("txt_monthlyemployee");

    ftier.Addcomment(LblMonthlyPID.Text, LoggedUserID, txt_monthlyemployee.Text, DateTime.Now, DateTime.Now, false);

    Comment.Text = string.Empty;
    ModelExtenderPost.Show();


}

1 个答案:

答案 0 :(得分:2)

你没有提供足够的信息,虽然我给你一些很好的技巧来解决这个问题

你的代码应该是有用的,我不知道它为什么不起作用

你可以有一个jquery方法

单击按钮时

$('#idofmonthlyeployeed').click(function()
{
      $('#commentboxid').val('');
      return false;   
});

您可以在此处查看工作示例Fiddle

如果您没有 idofmonthlyeployeed

的触发按钮,则可能会出现更新面板问题

请添加 idofmonthlyeployeed

的触发器

我希望这会有助于你考虑......:)