Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Thursday, December 04, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase
Search:
What's New - What's Hot
More Categories for .NET Namespaces .NET Namespaces (1905)
.NET Framework Namespaces
More Categories for Applications Applications (893)
Management, Email, Graphics, Search..
More Categories for Articles & Samples Articles & Samples (37383)
Assembly, Caching, Controls, Reflection..
More Categories for Community Community (94)
Conferences, Chat Rooms, Jobs, Training..
More Categories for Component & Controls Component & Controls (1005)
Forums, Management, Email, more..
More Categories for Developers Sites Developers Sites (130)
Sites dedicated to developer community..
More Categories for Developers Training Developers Training (234)
Training CD-ROMs, Videos, Courseware..
More Categories for Downloads Downloads (314)
Service Packs, Code, Msdn Show..
More Categories for Hosting Services Hosting Services (137)
ASP and ASP.Net Hosting sites..
More Categories for Introduction Introduction (334)
ASP, ADO.Net, C#, VB.NET, XML
More Categories for Knowledge Base Knowledge Base (2203)
Knowledge Base Articles, Samples, Tutorials, HowTos...
More Categories for Sample Chapters Sample Chapters (223)
Sample Chapters from Developer Books..
More Categories for Silverlight Silverlight (183)
Silverlight
More Categories for Support WebCasts Support WebCasts (638)
Microsoft's Support WebCasts

Implementing Cascading DropDownList in ASP.NET GridView AddThis        
Total Hits: 3  |  Today: 3 Author: Suprotim Agarwal       Rating:  
Read Reviews | Write Review |   Your Rating: 

I wrote this article sometime ago in response to a query asked by a dotnetcurry.com viewer. The user had a requirement where he had two dropdownlist in the GridView and the second one was to be populated at runtime based on the selected value of the first dropdownlist – A case of cascading dropdownlists. I wrote this article sometime ago in response to a query asked by a dotnetcurry.com viewer. The user had a requirement where he had two dropdownlist in the GridView and the second one was to be ...

CRUD operations using the List View Web Server Control        
Total Hits: 2  |  Today: 2 Author: Kalyan Bandarupalli       Rating:  
Read Reviews | Write Review |   Your Rating: 

Using the ASP.NET ListView Control we can insert,edit, or delete records without writing any code. This post explains how to display and update data using the ListView control. We will use SqlDataSource control to retrieve results from the data source and act as the data source for the ListView control....

ASP.NET 3.5 URL Routing        
Total Hits: 3  |  Today: 3 Author: Kalyan Bandarupalli       Rating:  
Read Reviews | Write Review |   Your Rating: 

This post speaks about basics of URL Routing and how URL Routing related to building a ASP.NET MVC Application. You can also use the URL Routing with the ASP.NET Web application if install the Visual Studio 2008 service pack1. This post specifically speaks about how URL Routing is used in ASP.NET MVC Application.
* URL Routing is critical element in the ASP.NET MVC Application.
* The reason for this is URL Routing determines incoming request to get mapped to the MVC Controller....

Display Master-Detail Data with the ModalPopup Extender and GridView        
Total Hits: 2  |  Today: 2 Author: Suprotim Agarwal       Rating:  
Read Reviews | Write Review |   Your Rating: 

In the past we have often used the combination of the GridView and DetailsView to display Master-Detail data. Similarly, developers have used pop-ups to depict similar scenarios where a user clicks on a ‘master’ row and the details are displayed in a pop-up window. I was recently exploring the ModalPopup extender control which allows a page to display content to the user in a "modal" manner. I thought of trying out the Master-Details scenario using the ModalPopup Extender. This article discusses...

ASP.NET 3.5 MVC Application        
Total Hits: 2  |  Today: 2 Author: Kalyan Bandarupalli       Rating:  
Read Reviews | Write Review |   Your Rating: 

This post gives you the basic overview on ASP.NET Models, Views and Controllers. It explains how all parts in MVC Application work together and discuss how the Architecture of an ASP.NET MVC application differs from an ASP.NET Web Forms application....

ASP.NET MVC Tip: Ajax and Validations using jQuery        
Total Hits: 2  |  Today: 2 Author: shiju       Rating:  
Read Reviews | Write Review |   Your Rating: 

jQuery is now part of the ASP.net development platform and it is going to ship with Visual Studio in the future and will also be the part of ASP.NET MVC installation. ASP.NET MVC will be the first product to include jQuery. Guru Gu’s blog entry has the full details regarding this. This is a great decision from Microsoft and I hope that the community would be happy about the great decision taken by Microsoft. And this is another good step for web development after the ASP.NET MVC technology. jQue...

Creating an AJAX-Enabled Comment Form in ASP.NET        
Total Hits: 2  |  Today: 2 Author: ProgrammingHelp       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, we will be looking at how we can use Visual Studio to create a comment form, or guestbook to allow visitors of our web site to leave messages, in ASP.NET with the added functionality of AJAX. This means that the comments will almost immediately by added to a SQL database and displayed on the page without postback - the whole page will not be reloaded. We are using Server Intellect and have found that by far, they are the most friendly, responsive, and knowledgeable support team ...

Spice Up Your Ad Reports - Using the ASP.NET Repeater Control to Group Data and Add Totals        
Total Hits: 2  |  Today: 2 Author: Suprotim Agarwal       Rating:  
Read Reviews | Write Review |   Your Rating: 

The Repeater control is truly amazing. Being template driven, it gives you a lot of flexibility to manipulate and render the final output. In this article, we will exploit this flexibility of the ASP.NET Repeater and build a sample to demonstrate how to use the templates to group and display data. We will also use a little code to ‘total’/sum up our data and display it on the fly. At the end, we will apply css to design a beautiful report from the Repeater control. I have borrowed the css from t...

LINQ to SQL Paging using GridView in C# and ASP.NET 3.5        
Total Hits: 3  |  Today: 3 Author: ServerIntellect       Rating:  
Read Reviews | Write Review |   Your Rating: 

This tutorial will show you how we can extend the LINQ to SQL Class and create methods that will allow us to page data from a SQL database. C# version. I just signed up at Server Intellect and couldn't be more pleased with my Windows Server! Check it out and see for yourself....

Using AutoComplete in the AJAX Toolkit in C#        
Total Hits: 5  |  Today: 5 Author: ajaxtutorials       Rating:  
Read Reviews | Write Review |   Your Rating: 

This tutorial was created with and aimed toward users of Visual Studio.NET 2008. 2005 can be used, but Microsoft's ASP.NET AJAX Extensions, which can be downloaded at this location, must be installed. Also, if using 2005, some additional steps may be required that are not listed in this article. Microsoft have a Control Toolkit that is not included with the .NET Framework, but can be downloaded from www.codeplex.com/AjaxControlToolkit. This Toolkit is constantly being updated and consists mainly...

Forms Authentication in ASP.NET with C#: Advance        
Total Hits: 2  |  Today: 2 Author: Raja       Rating:  
Read Reviews | Write Review |   Your Rating: 

In my previous article (http://www.dotnetfunda.com/articles/article114.aspx), I described how to work with forms authentication, that was the basic description about Forms Authentication. In this article, I am going to explain how to Role based security using Forms Authentication. For the demo purpose, I have create a xml file and stored UserName, Passwod, and Roles in xml file and I will validate the user using that xml file data. In real scenario, you can use database to store username, passwo...

Team Build 2008        
Total Hits: 2  |  Today: 2 Author: Brian A. Randell       Rating:  
Read Reviews | Write Review |   Your Rating: 

Team Foundation Server (TFS) is about teams. Sure, a team of one can use it, but TFS is really all about collaboration with other humans on your development projects. Build automation is not F5. Build automation is about collecting, assembling, validating, and auditing. The idea is that you will collect all of the artifacts that comprise your solution and assemble said artifacts based upon a well-defined integration plan. Compilation is a typical task defined in the assembling phase. You use var...


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net