mberseth

Stories submitted by mberseth

Five Common ASP.NET SEO Mistakes(dexign.net)

submitted by mbersethmberseth(1385) 3 years, 10 months ago

Here's a checklist of five common mistakes that ASP.NET and the Viewstate/Postback model of development make it far too easy for unsuspecting developers to make: read more...

1 comment |category: |Views: 564

tags: another

ASP.NET AJAX Roadmap (codeplex.com)

submitted by mbersethmberseth(1385) 3 years, 10 months ago

Interesting document ... Includes stuff like - adding jQuery style css selectors: $query(“input[type=text][value~=foo]”); - client side templates read more...

add a comment |category: |Views: 21

tags: another

An Open Letter to the ALT.NET Community(codethinked.com)

submitted by mbersethmberseth(1385) 3 years, 10 months ago

It seems as if everyone in .net land has chimed in on the whole Entity Framework "Vote Of No Confidence" petition recently, and up until now I have mostly stayed on the sidelines. As with any seemingly risky move, I was quite torn on the issue. And to a certain extent, I still am ... read more...

2 comments |category: |Views: 344

tags: another

Live Demo of ScottGu's Silverlight 2 Digg Application(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 2 months ago

I didn't see any live demo links on Scott's blog, so I thought I would upload his digg demo app to my web server. So if you want to view his app without downloading the code (or if you don't have VS 2008), you can view the live demo here. Hopefully Scott won't mind ... read more...

add a comment |category: |Views: 51

tags: another

Virtual Earth Map Control within a ModalPopup(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 9 months ago

How to display the Virtual Earth Map Control using the ModapPopupExtender control read more...

add a comment |category: |Views: 43

tags: another

ModalPopupExtender for Editing Rows in a GridView (Master/Deta(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 9 months ago

Example showing how to implement the classic Master/Details scenario using ASP.NET AJAX and the ModalPopupExtender control in the ASP.NET AJAX Control Toolkit. read more...

add a comment |category: |Views: 969

tags: another

DisableControlExtender(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 9 months ago

An AjaxControlToolkit extender control that is useful for disabling controls during partial postbacks ... read more...

add a comment |category: |Views: 22

tags: another

How To: Show Header and Footer Rows in an Empty GridView(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 10 months ago

If you have worked with the ASP.NET 2.0 GridView control, I am sure you were more than a little surprised when you realized there is no decent way to display the Header or Footer rows of a GridView that is bound to an empty DataSource. I know I was. It seems like a bug to me and I am surprised it made it through usability testing. Anyway, there are basically 2 ways to work around this problem read more...

add a comment |category: |Views: 997

tags: another

Confirm GridView Deletes with the ModalPopupExtender(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 10 months ago

I was looking for good examples of how the ModalPopupExtender control could be used as a confirmation dialog. I was especially curious in seeing implementations where the popup is used to confirm deletes performed on rows of a GridView. I couldn't find any good samples so I figured I would take a shot at it ... read more...

add a comment |category: |Views: 235

tags: another

Google Analytics AJAX Progress Indicator(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 10 months ago

Google Analytics-style ASP.NET AJAX progress indicator. Live demo and code sample ... read more...

1 comment |category: |Views: 75

tags: another

ASP.NET AJAX: Use PageMethods Proxy to Read and Write Session Data(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

Ever had the need to read or write a piece of session data from the browser? Here is an example of an easy way this can be accomplished using ASP.NET AJAX ... read more...

add a comment |category: |Views: 11

tags: another

Rendering a Gmail 'Loading' Indicator over a Specific ASP.NET Control(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

A recent 'kicks' article showed how to use an UpdateProgress to display a page level gmail-like status indicator. This article shows a technique for rendering the indicator over the control contained within an updatepanel. On pages where there are a lot of controls, this lets the user know exactly which one was updated. read more...

add a comment |category: |Views: 1350

tags: another

EventHandlerList - Declaring .Net Events that Conserve Memory(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

Ever heard of the EventHandlerList object that lives in the System.ComponentModel namespace of the .Net framework? I hadn't until I disassembled the System.Windows.Forms.Control class while debugging the other day. I did a few google searches and ended up on an MSDN page titled 'How to: Declare Events That Conserve Memory Use'. I found the content rather interesting. Typically, a class declares an event as follows ... read more...

1 comment |category: |Views: 88

tags: another

ASP.NET AJAX: Invoke a static method from script(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

Did you know that with ASP.NET AJAX you can easily invoke static methods declared on your ASP.NET page from script on the client? To enable this you will need to do the following ... read more...

add a comment |category: |Views: 66

tags: another

Quick Tip: Use System.IO.Path.Combine instead of string concatenation(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

System.IO.Path has a number of utility methods that are useful when you have to progamatically build a file path ... read more...

2 comments |category: |Views: 234

tags: another

Quick Ajax Tip: Provide a better asp:Wizard user experience(mattberseth.com)

submitted by mbersethmberseth(1385) 4 years, 11 months ago

Wrapping an asp:Wizard in an asp:UpdatePanel is a nice way to improve the user experience of your web pages. Throw in a couple of animation cues using the UpdatePanelAnimationExtender and your application will really ... read more...

add a comment |category: |Views: 108

tags: another