ListView inside updatepanel causes full postback
When I click on the DataPager of the listview, the full page gets refreshed, despite the control is on a update panel. I would expect only the list view is updated. Here is the aspx code
pertaining to the problem.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ListView ID="lv" runat="server"
ItemPlaceholderID="ItemPlaceHolder"
>
<LayoutTemplate>
<div class="container">
<div class="row">
<div runat="server" class="col-sm-4" id="ItemPlaceHolder"></div>
</div>
</div>
<asp:DataPager ID="lvDataPager" runat="server"
QueryStringField ="id"
PageSize="3">
<Fields>
<asp:NumericPagerField ButtonType="Button"/>
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<div class="col-sm-4">
Title: <%# Eval("title") %> <br />
Href: <%# Eval("href") %> <br />
Visited: <%# Eval("visited") %><br />
</div>
</ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
The code behind:
In page load event, I create the data source which tne I bind to the ListView.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
DataTable dt = new DataTable();
if (ViewState["data"] != null)
{
dt = (DataTable)ViewState["data"];
}
else
{
dt.Columns.Add("id");
dt.Columns.Add("title");
dt.Columns.Add("href");
dt.Columns.Add("visited");
dt.Rows.Add(0, "google", "http://www.google.com", false);
dt.Rows.Add(1, "bing", "http://www.bing.com", false);
dt.Rows.Add(2, "yahoo", "http://www.yahoo.com", false);
for (int i = 3; i <= 30; i++)
{
dt.Rows.Add(i, "mywebsite", "http://www.mywebsite.com", false);
}
ViewState["data"] = dt;
}
BindLV();
}
private void BindLV()
{
DataTable dt = (DataTable)ViewState["data"];
lv.DataSource = dt;
lv.DataBind();
}
asp.net listview updatepanel
add a comment |
When I click on the DataPager of the listview, the full page gets refreshed, despite the control is on a update panel. I would expect only the list view is updated. Here is the aspx code
pertaining to the problem.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ListView ID="lv" runat="server"
ItemPlaceholderID="ItemPlaceHolder"
>
<LayoutTemplate>
<div class="container">
<div class="row">
<div runat="server" class="col-sm-4" id="ItemPlaceHolder"></div>
</div>
</div>
<asp:DataPager ID="lvDataPager" runat="server"
QueryStringField ="id"
PageSize="3">
<Fields>
<asp:NumericPagerField ButtonType="Button"/>
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<div class="col-sm-4">
Title: <%# Eval("title") %> <br />
Href: <%# Eval("href") %> <br />
Visited: <%# Eval("visited") %><br />
</div>
</ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
The code behind:
In page load event, I create the data source which tne I bind to the ListView.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
DataTable dt = new DataTable();
if (ViewState["data"] != null)
{
dt = (DataTable)ViewState["data"];
}
else
{
dt.Columns.Add("id");
dt.Columns.Add("title");
dt.Columns.Add("href");
dt.Columns.Add("visited");
dt.Rows.Add(0, "google", "http://www.google.com", false);
dt.Rows.Add(1, "bing", "http://www.bing.com", false);
dt.Rows.Add(2, "yahoo", "http://www.yahoo.com", false);
for (int i = 3; i <= 30; i++)
{
dt.Rows.Add(i, "mywebsite", "http://www.mywebsite.com", false);
}
ViewState["data"] = dt;
}
BindLV();
}
private void BindLV()
{
DataTable dt = (DataTable)ViewState["data"];
lv.DataSource = dt;
lv.DataBind();
}
asp.net listview updatepanel
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
Placeasp:DataPager
outside ofListView
– Alex Kudryashev
Jan 1 at 19:15
add a comment |
When I click on the DataPager of the listview, the full page gets refreshed, despite the control is on a update panel. I would expect only the list view is updated. Here is the aspx code
pertaining to the problem.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ListView ID="lv" runat="server"
ItemPlaceholderID="ItemPlaceHolder"
>
<LayoutTemplate>
<div class="container">
<div class="row">
<div runat="server" class="col-sm-4" id="ItemPlaceHolder"></div>
</div>
</div>
<asp:DataPager ID="lvDataPager" runat="server"
QueryStringField ="id"
PageSize="3">
<Fields>
<asp:NumericPagerField ButtonType="Button"/>
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<div class="col-sm-4">
Title: <%# Eval("title") %> <br />
Href: <%# Eval("href") %> <br />
Visited: <%# Eval("visited") %><br />
</div>
</ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
The code behind:
In page load event, I create the data source which tne I bind to the ListView.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
DataTable dt = new DataTable();
if (ViewState["data"] != null)
{
dt = (DataTable)ViewState["data"];
}
else
{
dt.Columns.Add("id");
dt.Columns.Add("title");
dt.Columns.Add("href");
dt.Columns.Add("visited");
dt.Rows.Add(0, "google", "http://www.google.com", false);
dt.Rows.Add(1, "bing", "http://www.bing.com", false);
dt.Rows.Add(2, "yahoo", "http://www.yahoo.com", false);
for (int i = 3; i <= 30; i++)
{
dt.Rows.Add(i, "mywebsite", "http://www.mywebsite.com", false);
}
ViewState["data"] = dt;
}
BindLV();
}
private void BindLV()
{
DataTable dt = (DataTable)ViewState["data"];
lv.DataSource = dt;
lv.DataBind();
}
asp.net listview updatepanel
When I click on the DataPager of the listview, the full page gets refreshed, despite the control is on a update panel. I would expect only the list view is updated. Here is the aspx code
pertaining to the problem.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ListView ID="lv" runat="server"
ItemPlaceholderID="ItemPlaceHolder"
>
<LayoutTemplate>
<div class="container">
<div class="row">
<div runat="server" class="col-sm-4" id="ItemPlaceHolder"></div>
</div>
</div>
<asp:DataPager ID="lvDataPager" runat="server"
QueryStringField ="id"
PageSize="3">
<Fields>
<asp:NumericPagerField ButtonType="Button"/>
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<div class="col-sm-4">
Title: <%# Eval("title") %> <br />
Href: <%# Eval("href") %> <br />
Visited: <%# Eval("visited") %><br />
</div>
</ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
The code behind:
In page load event, I create the data source which tne I bind to the ListView.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
DataTable dt = new DataTable();
if (ViewState["data"] != null)
{
dt = (DataTable)ViewState["data"];
}
else
{
dt.Columns.Add("id");
dt.Columns.Add("title");
dt.Columns.Add("href");
dt.Columns.Add("visited");
dt.Rows.Add(0, "google", "http://www.google.com", false);
dt.Rows.Add(1, "bing", "http://www.bing.com", false);
dt.Rows.Add(2, "yahoo", "http://www.yahoo.com", false);
for (int i = 3; i <= 30; i++)
{
dt.Rows.Add(i, "mywebsite", "http://www.mywebsite.com", false);
}
ViewState["data"] = dt;
}
BindLV();
}
private void BindLV()
{
DataTable dt = (DataTable)ViewState["data"];
lv.DataSource = dt;
lv.DataBind();
}
asp.net listview updatepanel
asp.net listview updatepanel
asked Jan 1 at 11:00
user1238784user1238784
439621
439621
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
Placeasp:DataPager
outside ofListView
– Alex Kudryashev
Jan 1 at 19:15
add a comment |
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
Placeasp:DataPager
outside ofListView
– Alex Kudryashev
Jan 1 at 19:15
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
Place
asp:DataPager
outside of ListView
– Alex Kudryashev
Jan 1 at 19:15
Place
asp:DataPager
outside of ListView
– Alex Kudryashev
Jan 1 at 19:15
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994910%2flistview-inside-updatepanel-causes-full-postback%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994910%2flistview-inside-updatepanel-causes-full-postback%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
remove temporary the UpdatePanel to see if you have errors, javascript errors or other.
– Aristos
Jan 1 at 11:41
Place
asp:DataPager
outside ofListView
– Alex Kudryashev
Jan 1 at 19:15