English 中文(简体)
如何在按键点击 asp.net 时重新装入中继器
原标题:how to reload repeater on button click in asp.net

我的页面上有一个中继器 被上传到页面上

        con.Open();
        SqlDataReader postView = cmd.ExecuteReader();
        topicView.DataSource = postView;
        topicView.DataBind();

然后,我还有一节要添加一个文章。我想要它做的是当用户按键添加时,它重新加载页面并显示更新的中继器。但是它没有这样做

每个人都说只要重新加载数据集, 除了这没有像原始数据集在页面载荷中那样起作用, 而新的数据集是在受保护的空键点击中。

谁能告诉我该怎么做, 或者我只需要把所有连接, 数据源 ad databind 信息 在按键的代码?

最佳回答

您可以创建一个函数,每次按键点击事件火灾时都可以调用该函数。

 Private void BindRepeater()
 {
     con.Open();
    SqlDataReader postView = cmd.ExecuteReader();
    topicView.DataSource = postView;
    topicView.DataBind();
  }

  Protected Button_Click(object as sender , EventArgs e)
 {
   //call the function to populate the repeater with the updated records
   this.BindRepeater();

  }
问题回答

您可以像这样解决它。 创建一个方法

private void Bind()
{
        con.Open();
        SqlDataReader postView = cmd.ExecuteReader();
        topicView.DataSource = postView;
        topicView.DataBind();
}

现在您可以在页面上的任意位置使用它, 在那里您需要重新装入中继器 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签