Search Results

0
votes

How do I fade a row out before postback

Register the handler for form "submit" event. $("form").submit(function() { // if user initiated delete action // do your thing with deleted row (effects, etc.) // a …
0
votes

What’s the best way to implement friendly URL in ASP.net?

I have used UrlRewriter.Net library. It is small but powerful and easy to configure. …
0
votes

Website Design - Changing only the body content

Use page templates (aka master pages in ASP.NET). Better yet, use a MVC framework. My personal favorite is …