0
votes
1answer
11 views
Add an Editor control dynamically inside of a repeater using AJAX
I'm looking for a way to add an Editor control (from the ASP.NET AJAX Control Toolkit) to each element of a repeater. It's working fine if I just include it in the ItemTemplate of the repeater, but …
0
votes
1answer
48 views
Postback a linkbutton in a grid that’s under an UpdatePanel
as my title says...
How do you make a LinkButton fire a POSTBACK (not ASYNCPOSTBACK) which is inside a GridView and is under an UpdatePanel?
My Scenario is this,
I have a grid. say table A, which …
0
votes
1answer
15 views
How to create custom asp.net validator that works with UpdatePanel?
I think that subject summs it pretty well...
I have created my custom validators that work great when I put them on page in design mode. However if I place them in a usercontrol, and then try to add …
0
votes
1answer
18 views
asp.net update panel and validators not working
Hello,
I have created UserControl that contains a textbox and a restricted length validator for that textbox.
I'm adding user controls dynamically via UpdatePanel to my Parent WebForm. And the …
0
votes
0answers
16 views
asp.net jquery tabs and updatepanels
I'm using asp.net together with jquery. In Default.aspx I have implemented some jquery-tabs that load their data with ajax call. They load another asp.net page MyTab.aspx. My problem is that when I …
0
votes
1answer
73 views
Databound Listview in UpdatePanel
Hello
I am using a Listview in a usercontrol that I databind to a list of object in the page load event.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) …
0
votes
0answers
14 views
Multiple Concurrent Postbacks when using UpdatePanels
Here's an example app that I built to demonstrate my problem. A single aspx page with the following on it:
<form id="form1" runat="server">
<asp:ScriptManager runat="server" />
…
0
votes
0answers
9 views
Click & Hold Mouse On Any Button/Link & UpdatePanel AsyncPostback Turns Into Full Postback
After reading this post you may want to kick me for my stupidity. But this issue was raised by one of our client, so I have to look into this problem. So bear with me and please read the entire …
0
votes
4answers
182 views
JavaScript UpdatePanel: Stop when Inactive
Hi I would like to do the following:
Use JavaScript to stop the update panel from "updating" when the browser is inactive, and restart once it’s active again. I was looking at: Inacivity with …
0
votes
2answers
268 views
asp.net ajax updatepanel and playing sound
I want to play a sound when asp.net updatepanel updates. Is there a free and simple way to play sound when ajax panel updates?
2
votes
5answers
196 views
Upload fails once, then works correctly
I'm working on an ASP.Net custom control. In my control I have a FileUpload control, inside a MultiView, inside an AJAX UpdatePanel.
I've added the submit button to the post back triggers of the …
0
votes
1answer
316 views
Displaying a spinner for a webservice call (Like UpdateProgress Control)
Right now I have a page where unfortunately there is a mix of update panels and calls to webservice web/script methods from javascript.
I have an update progress control which shows a spinner for …
1
vote
1answer
20 views
Is there any workaround for the UpdatePanel + Server.Transfer problem?
I'm trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can't do this if I am using Server.Transfer() in my application.
Modifying that component of the application …
0
votes
1answer
1k views
scriptmanager in masterpage and updatepanel in usercontrol. Partial postback not happening
hi, i have a master page with following scriptmanager tag:
<asp:ScriptManager ID="scriptManger" EnablePartialRendering="true" runat="server" >
<Scripts>
<asp:ScriptReference …
0
votes
1answer
39 views
ASP.Net: Asynchronous Update Panel Loading with two update panels
Hello,
I am trying to asynchronously display data in update panels on a website where the data retrieval tasks take different times. I would like to update each panel to show the data on the page …
