ASP.NET MVC Routing Tutorial – Part I
Getting started with ASP.NET MVC Routing [ASP.NET101.com]
Read moreGetting started with ASP.NET MVC Routing [ASP.NET101.com]
Read more50 Tips to Optimize ASP.NET Applications [ASPNET101.com]
Read moreReview of the new features in ASP.NET 4.0 [ASPNET101.com]
Read moreWeb form pages are HTTP-Based, they are stateless,which means they don’t know whether the requests are all from the sameclient, and pages are destroyed and recreated with each round trip to theserver, therefore information will be lost, therefore state management is reallyan issue in developing web applications Wecould easily solve these problems in ASP with [...]
Read moreBy Joe Mayo You also can store small amounts of information on the client by using hidden fields. Hidden fields are HTML elements, similar to text boxes, where you can store strings. Web browsers don’t display hidden fields in page output. However, when you use a hidden field within an HTML form, the contents are submitted [...]
Read moreBy Alvin Bruney Have you seen this annoying error with the datagrid? Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount. Permutations of this bug appear to occur when paging is used and viewstate is turned on. Let?s examine why it occurs and, most importantly, how we can cure this ailment. Because [...]
Read moreBy Vijay Cinnakonda A webservice in general is a way of exposing the properties and methods through the Internet In other words, it’s an URL-addressable resource that programmatically returns information to clients who want to use it. A webservice is based on XML standards and has been implemented by different vendors like IBM, Sun Microsystems, CapeClear [...]
Read moreIn this article, I show a class that can beused to find and display all of the urls on a web page. What for youmay ask? Well, in my experience as a web developer, I have found aclass like this to be very useful. Sometimes, you may want to use thisclass a a basis for [...]
Read moreIntroduction This article presents animplementation of a web browser control for the .NET Framework 1.1.It's more of a reference for what it does than how it's done. This is not the result of my work but a collection of all the help I got along the way. Background The need for this control came froma [...]
Read moreThis article will give you abrief idea how to load a user control dynamically and pass values to it. Thiscan be also taken as a best example for the use of properties.<o:p></o:p> <o:p> </o:p> Step1: Create a web page- default.aspx and place a place holder in it.<o:p></o:p> Step2: Create a usercontrol- my.ascx and place a label [...]
Read more