Stories recently tagged with 'UpdatePanel'

Update Panels and JSON Alternatives(csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 2 years, 8 months ago

In most asp.net applications users experience post backs as a result of submit action by the client browsers. These post backs can be quite annoying when just a small part of the page needs to be refreshed. Update panels are designed to perform partial post back eliminating the need for doing a complete post back for updating a part of the page. But are these post backs truly partial? In this article we try to find out if Update panels actually improve performance by doing partial post backs or do they end up degrading it. read more...

add a comment |category: |Views: 37

tags: another

Cool ScriptManager stuff I missed...(theruntime.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 8 months ago

So the last week or so I have been doing some heavy handed UpdatePanel development (stuff where I needed to fix an existing form that needs help to support an UpdatePanel or stuff where I needed to do something special while the page was posting back asyncronously). In the midst I discovered some cool mechanisms that I missed! read more...

add a comment |category: |Views: 46

tags: another

UFrame: goodness of UpdatePanel and IFRAME combined(msmvps.com)

submitted by superghostsuperghost(2260) 3 years, 8 months ago

UFrame combines the goodness of UpdatePanel and IFRAME in a cross browser and cross platform solution. It allows a DIV to behave like an IFRAME loading content from any page either static or dynamic. It can load pages having both inline and external Javascript and CSS, just like an IFRAME. But unlike IFRAME, it loads the content within the main document and you can put any number of UFrame on your page without slowing down the browser. read more...

add a comment |category: |Views: 40

tags: another

Ajax UpdatePanel vs. ASP.NET 3.5 ScriptServices(codegod.de)

submitted by illvoid2illvoid2(70) 3 years, 8 months ago

The UpdatePanel-control that came with Ajax.NET offers the possibility to add Ajax-functionality to your ASP.NET-application. The control is easy to use but has some drawbacks concerning performance. ASP.NET 3.5 ScriptServices are an alternative approach to use Ajax with ASP.NET. read more...

add a comment |category: |Views: 51

tags: another

Some ASP.NET AJAX Tips and Tricks(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 9 months ago

I've been using ASP.NET AJAX alot for a while now, so I thought I'd share some of the Tips and Tricks that I've learned though my adventures. Lately, all the buzz has been around Silverlight, but I know there are still a lot of devs out there that can benefit from these tips and tricks. read more...

add a comment |category: |Views: 32

tags: another

UpdatePanel, FireFox and the DefaultButton(weblogs.asp.net)

submitted by johnrummelljohnrummell(1296) 3 years, 11 months ago

"... the one thing that was vexing me was the Default Button. It worked like a charm in IE. In Firefox, it behaved like the ugly step sisters. The problem wasn't that it didn't do a postback. That it did. What it didn't do was hit the server side event (the button click event)." read more...

add a comment |category: |Views: 60

tags: another

UpdatePanel: Dynamically Add Controls and Identify Which Fired Event(geekswithblogs.net)

submitted by crpietschmanncrpietschmann(11.3k) 4 years ago

Here is a cool technique on how to identify which control has triggered the UpdatePanel (when dynamic controls are added during runtime). Here we will use the Request Object to identify this. read more...

add a comment |category: |Views: 220

tags: another

FileUpload and Ajax UpdatePanel(muraton.net)

submitted by muratyilmazmuratyilmaz(190) 4 years ago

FileUpload and Ajax UpdatePanel read more...

add a comment |category: |Views: 545

tags: another

Configuring Dynamically Created User Controls Containing UpdatePanel(couldbedone.blogspot.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 2 months ago

UpdatePanel is a rare ASP.NET (actually ASP.NET AJAX Extensions) control which benefits from the TemplateInstanceAttribute and especially TemplateInstance.Single case. Its ContentTemplate property is decorated with [TemplateInstance(TemplateInstance.Single)] attribute. This setting allows accessing declaratively created controls in the ContentTemplate via page fields generated by ASP.NET. read more...

add a comment |category: |Views: 108

tags: another

Restoring Lost Focus in the Update Panel with Auto Post-Back Controls(couldbedone.blogspot.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 2 months ago

UpdatePanel control is used for different purposes like reducing flickering of the page and reducing network traffic generated by a web site. Developers often wrap input boxes into an UpdatePanel to implement cascading drop-downs and update other related controls. Cascading drop-downs can be implemented with a help of Ajax Control Toolkit control extenders, but in general case you will either need to write script code or place controls in an update panel. The latest approach is very easy to implement, but it also has a lot of drawbacks. If you wrap input boxes (and other input controls) in the update panel, you must be aware about the following consequences: read more...

add a comment |category: |Views: 443

tags: another

Animating ASP.NET AJAX Update Panel Updates(dennydotnet.com)

submitted by superghostsuperghost(2260) 4 years, 3 months ago

The ASP.NET AJAX Update Panel simply replaces the panel contents when it updates. In this example we see how we can add some animation to the update. read more...

add a comment |category: |Views: 82

tags: another

UpdatePanels: When and Where(dennydotnet.com)

submitted by superghostsuperghost(2260) 4 years, 5 months ago

Tips on working with Update Panels. read more...

add a comment |category: |Views: 19

tags: another

Build an MSDN-style content rater with ASP.NET, MS AJAX, and jQuery(riderdesign.com)

submitted by LSUDVMLSUDVM(470) 4 years, 5 months ago

In the MSDN library, content can be rated by clicking on a star (from 1 through 5). When you hover over the content rateR on MSDN2, a textbox appears to allow comments to be added. Using the rating control and the jQuery library, we can very easily create a content rater simliar to the one on MSDN. read more...

add a comment |category: |Views: 67

tags: another

Loading UserControl Dynamically in UpdatePanel(geekswithblogs.net)

submitted by kazimanzurrashidkazimanzurrashid(3960) 4 years, 6 months ago

Shows how to load user controls dynamically in update panel on different menu click and how to employ different helper controls like UpdateProgress, ModalPopupExtender when the control is loading. read more...

1 comment |category: |Views: 502

tags: another

Dynamic Controls, UpdatePanels and AsyncPostBackTrigger(dennydotnet.com)

submitted by superghostsuperghost(2260) 4 years, 6 months ago

The AsyncPostBackTrigger is used in ASP.NET AJAX to, as it states, trigger an asynchronous postback. Adding a trigger to an UpdatePanel is fairly straight forward. But what about controls that are created dynamically like within a DataList? read more...

add a comment |category: |Views: 680

tags: another

How To: Create an ASP.NET AJAX Style Folder Explorer(mattberseth.com)

submitted by k000derk000der(4765) 4 years, 6 months ago

Folder explorer with GridView, TreeView and UpdatePanel controls. read more...

add a comment |category: |Views: 332

tags: another