Browse by Tags
All Tags »
ASP.NET (RSS)
ASP.NET MVC request pipeline in-depth http://stephenwalther.com/blog/archive/2008/03/18/asp-net-mvc-in-depth-the-life-of-an-asp-net-mvc-request.aspx ASP.NET URL Routing http://blogs.msdn.com/mikeormond/archive/2008/05/14/using-asp-net-routing-independent-of-mvc.asp
Read More...
I've seen many guys confused about the .NET app.config file for the exe application and the dll assembly(we can see Visual Studio generate app.config file for both of exe and dll project). Here is a good article discussing on this: #App.config in C# with
Read More...
Here is a blog entry from Wenlong Dong's blog which explains the "ASP.NET Compatibility Mode" in WCF: #ASP.NET Compatibility Mode http://blogs.msdn.com/wenlong/archive/2006/01/23/516041.aspx
Read More...
Just found some good BP articles from Kazi Manzur Rashid's Blog: #part 1 http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx #part 2 http://weblogs.asp.net/rashid/archive/2009/04/03/asp-net-mvc-best-practices-part-2.aspx
Read More...
[ASP.NET]How to implement file upload and download in ASP.NET MVC File upload/download is very useful functionality in web application. Here is a simple implementation of file upload/download in ASP.NET MVC 1.0. The sample use a “FileManager” controller
Read More...
Finally, ASP.NET MVC 1.0 comes to RTM. Anyone who're interested in ASP.NET MVC (and prefer non-beta installation) can get it here: http://www.microsoft.com/downloads/details.aspx?FamilyID=53289097-73ce-43bf-b6a6-35e00103cb4b&displaylang=en Enjoy it
Read More...
Just a placeholder for some good ASP.NET performance tuning and troubleshooting resources. Learning Links: *ASP.NET Health Monitoring Overview http://msdn.microsoft.com/en-us/library/bb398933.aspx *10 Tips for Writing High-Performance Web Applications
Read More...
Just a placeholder for ASP.NET debugging resource, will continue to update them. #How to use ADPlus to troubleshoot "hangs" and "crashes" http://support.microsoft.com/kb/286350 #Troubleshooting ASP.NET using WinDbg and the SOS extension http://support.microsoft.com/kb/892277
Read More...
#Offical Site http://www.asp.net/ajax/ #ASP.NET AJAX roadmap: http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=14924 #jQuery and ASP.NET http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx
Read More...
Application restart is a common issue in ASP.NET web application. Here is a very good blog entry providing information on how to deal with such issue. Thanks Tess for the informative stuff: #ASP.NET Case Study: Lost session variables and appdomain recycles
Read More...
[WCF]How to expose WCF service to .NET 2.0 client WCF is provided in .NET 3.0 and much enhanced in 3.5. However, sometimes we still need to consume WCF service in .NET 2.0 applications. For such cases, it is very important that how we implement and host
Read More...
Just found a useful FAQ about exclude some httpmodule inheritance in ASP.NET web application(from parent ASP.NET application). It demonstrate two approaches: 1. Modify the parent web.config file to disable child app inheritance(element based) 2. Explicitlly
Read More...
[ASPNET]ASP.NET Event Validation and “Invalid Callback Or Postback Argument” Troubleshooting info There are many community members encountering this problem. Symptom is just as the following exception on ASPX page when postback. Invalid postback or callback
Read More...
[ASPNET]"System.InvalidOperationException: Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control." error in nested databinding scenario Problem: When you use GridView/DetailsView like template databound
Read More...
[WSS]WSS V3 Custom WebPart Features Gothrough Windows Sharepoint Service V3 is built upon ASP.NET 2.0 which makes its development and customization more powerful and flexible. There are also many new cool features for webpart development. I’ll use a single
Read More...