Questions tagged [updatepanel]

UpdatePanel is an ASP.NET AJAX control which allows page content to be updated asynchronously.

When adding an UpdatePanel control to your page, you can achieve a partial-page update of your page on a postback. Only the content in the UpdatePanel is refreshed, the other parts of the page remain unchanged. Use triggers for refreshing when it fires.

Documentation on MSDN
UpdatePanel Control Overview
Introduction to the UpdatePanel control
UpdatePanel Class

3281 questions
1
vote
1 answer

Could not find UpdatePanel with ID

I am creating an aspx page with a save button. On clicking the save button, I am getting an error "Microsoft JScript runtime error: Sys.InvalidOperationException: Could not find UpdatePanel with ID 'lblAFTimePanel'. If it is being updated…
Soumya
  • 123
  • 2
  • 10
  • 21
1
vote
1 answer

Required field validator is not working in update panel

I have a textbox and a button control in a panel which is in update panel. I want to validate textbox if it is empty on button click. Actually this panel is using for Modal Popup Extender functionality. For pop up I am using AJAX modal popup…
Srikanth
  • 683
  • 3
  • 16
  • 23
1
vote
3 answers

.NET Page Method vs UpdatePanel, Which is Better for Updating and Refreshing

I haven't started writing any code for this program, but here's what I need to do in C#/ASP.NET, both of which I'm just starting to learn. I have a DIV on a page that I want to update with information from an MS SQL Server every five seconds. Would…
LoganFrederick
  • 317
  • 2
  • 8
  • 19
1
vote
0 answers

UpdatePanel + Timer takes focus from my DropDownList

I use a timer and updatepanel to show clock in my page (Just an example). Using this codes in my aspx: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %>
Nadorkhan
  • 21
  • 2
1
vote
1 answer

multiple updatepanel

I'm just starting on stackoverflow, as writer at least... I'd appreciate your help on some issues that I ran into regarding AJAX. First, I've implemented AJAX before at work but only on basic stuffs such as an UpdatePanel refreshed by a…
nando m.
  • 33
  • 1
  • 4
1
vote
1 answer

ASP.NET Issue with File Upload Control

I am encountering difficulties when attempting to use the ASP.NET File upload control. What is happening is that when I call the file upload control from the code behind, I always get a FileUploadControl.HasFile = false. I have carried out some…
DottoreM
  • 309
  • 6
  • 27
1
vote
1 answer

Implementing UpdatePanel functionality with PartialViews - need help getting started

I'm fairly new to MVC, and need help understanding partial updates implementation similar to UpdatePanel functionality. I have certain filters on the LHS of the page and a table(DataTable) on the RHS. When the user selects a filter, I want the table…
neuDev33
  • 1,573
  • 7
  • 41
  • 54
1
vote
3 answers

Character Limit not working inside update panel

I'm using Jquery plugin called Limit as below $(document).ready( function () { $('[id$=Textarea1]').limit('150', '#charsLeft'); }); Relevant ASPX section,