Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> ASP / ASP.NET -> Latest articles Adds this page to your personal favorites
 
  Latest articles in this zone

Latest files
Latest links
Latest articles

Convert to PDF from .NET project
ExportToPDF is .NET library that offers the ability to convert csv files, Excel spreadsheets, Access mdb databases, text files, .NET DataTable objects to PDF on the fly. If you need PDF reports you do not have to use complex report generators anymore. Just create a simple .NET Windows Form or ASP.NET page and export it to PDF with the ExportToPDF assembly. You can set PDF page margins, change page orientation (portrait, landscape), customize headers and footers (change fonts, colors), add page numbers and more.
Visits: 264 Updated: 2008-4-10  Rating: (Not Rated)  More info & Ratings
Response.Redirect versus Server.Transfer in Visual Studio 2003 and VS2005.
A simple tutorial on using Response.Redirect and Server.Transfer - Userful tips to exchange data using Context.Handler
Visits: 518 Updated: 2008-4-2  Rating: (Not Rated)  More info & Ratings
DataGrid - Master/Child/Slave Details in VB.NET
Master Slave Relationship in Datagrid in VB.NET while expanding and collapsing rows using client side Javascript.
Visits: 28 Updated: 2008-3-16  Rating: (Not Rated)  More info & Ratings
How to create your own poll using .Net technology. (ASP.NET Poll Tutorial - Part 1)
A simple tutorial to show you how to create your own poll using asp.net and c#. For this example, we will use Microsoft Sql Server 2005 to hold the poll details, and Visual Studio 2005 to develop our poll control.
Visits: 21 Updated: 2008-3-9  Rating: (Not Rated)  More info & Ratings
DataGrid - Master/Child/Slave Details in ASP.NET, C# - Expand/Collapse Rows (Master/Detail View)
Using ASP.NET, C#, Framework 1.1 to show a master/detail grid with javascript to expand & collapse
Visits: 25 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
File Upload control in C# as a friendly web user control. Easy upload, delete, and view options
Web User control written in C# using VS2005 to allow file upload, delete, and view option. Easy property settings, makes it easier for developers to use.
Visits: 22 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
How To Use Tree Menu Based On User Credentials ( Logged In User / Not Logged In User).
This is a simple tutorial using Master Pages, and a Tree Menu control using Visual Studio 2005. The tree menu dynamically generates. This allows the developer to show different menu based on user roles (non member, member, admin).
Visits: 905 Updated: 2008-2-26  Rating: (Not Rated)  More info & Ratings
Adding and Configuring Server Controls to a Web Forms Page Using C# .NET
Generally, a Web application provides information from a Web server to different client users over the Internet. The Hypertext Transfer Protocol (HTTP) is used to send requests from a client's Web browser to the Web application on the Web server. The HTTP then sends back responses from the Web server to the Web browser on the Internet.
Visits: 10 Updated: 2008-2-18  Rating: (Not Rated)  More info & Ratings
WebRequest Parameter Utility
I published an article about web request parameter utility. Source code is included. WebParam class is used to encapsulate one or more web request parameters into a single request parameter. This class also provides security using message authentication to ensure that the transported data has not been tampered with during transport.
Visits: 117 Updated: 2007-12-5  Rating: (Not Rated)  More info & Ratings
How to Use Master Pages
A master page makes it easy for you to create pages that have common elements such as banners and navigation menus. That's why it is one of the most important new features of ASP.NET 2.0. In fact, you may decide that you're going to use one master page for every group of pages that you develop.
Visits: 135 Updated: 2007-11-6  Rating: (Not Rated)  More info & Ratings
Enabling Gzip and Deflate HTTP Compression in ASP.NET pages
This tutorial will help you setup HTTP Gzip and Deflate compression in your ASP.NET web application. We will make use of an ASP.NET web application life cycle event in Global.asax file to achieve that. The code is very simple to understand.
Visits: 129 Updated: 2007-11-3  Rating: (Not Rated)  More info & Ratings
Tracking and Displaying Real-time Visitor Time Zones in a Chart using ASP.NET.
Part 4 of a Multipart Series - In this tutorial we will learn how to add real-time visitor time zones tracking to our website. We will also create two (2) time zone charts for our website which will allow us to view where all of our visitors have mostly come from, and also to see in real-time, current active users' time zones. Click the link to see the sample charts and images.
Visits: 296 Updated: 2007-10-18  Rating: (Not Rated)  More info & Ratings
Ajax ModalPopup Extender in Asp.Net GridView Control
This article helps you more to explore the ModalPopup Extender integrated with Asp.Net GridView control. This article guides you to edit/update data in the GridView control from the ModalPopup Extender.
Visits: 820 Updated: 2007-10-17  Rating: (Not Rated)  More info & Ratings
Parent-Child Data Manipulations with GridView and DetailsView control
This article explains the concepts of parent-child data manipulations with the Asp.Net data-bound controls. This is achieved by joining the Asp.Net GridView control and DetailsView controls.
Visits: 242 Updated: 2007-10-17  Rating: (Not Rated)  More info & Ratings
Creating Line, Bar, and Area Charts using ASP.NET
Part 3 of a Multipart Series - In this tutorial we will learn how to create line, bar, and area PNG charts on the fly and incorporate them in our website statistics application. Specifically, we will create area charts of daily visits and page views for the last 12 months, and display them in the reports section of our application. Again, all code has been explained in detail, and is available for download.
Visits: 206 Updated: 2007-9-28  Rating: (Not Rated)  More info & Ratings
WebRequest Parameter Utility
WebParam class is used to encapsulate one or more web request parameters into a single request parameter. This class also provides security using message authentication to ensure that the transported data has not been tampered with during transport.
Visits: 151 Updated: 2007-9-10  Rating: (Not Rated)  More info & Ratings
UpdatePanel and Triggers with ASP.NET AJAX
In the last tutorial I showed how to use an UpdatePanel for partial-page-update. The control that was triggering the update of the UpdatePanel has been dropped into the Panel, where it is registered as trigger automatically. Now I want to explain, how you can trigger a refresh by a control that lives outside of the UpdatePanel.
Visits: 263 Updated: 2007-7-24  Rating: (Not Rated)  More info & Ratings
UpdatePanel tutorial ASP.NET AJAX
What ist the UpdatePanel in ASP.NET Ajax? The answer is easy: When adding an UpdatePanel-control to your page, you can achieve a partial-update of your page on a postback. Only the content in the UpdatePanel is refreshed, the other parts of the page remain unchanged. This topic explains, how you can setup an Ajax-enabled project and use the UpdatePanel control.
Visits: 310 Updated: 2007-7-24  Rating: (Not Rated)  More info & Ratings
GridView Javascript Click Row and DataBinding
This article shows 2 common tasks with the ASP.NET GridView: Bind a List (generic) of Objects as DataSource and react with javascript on a click in a row. In the example a List with User-objects is displayed, on clicking a User, the User's name is shown in a javascript-alert.
Visits: 232 Updated: 2007-7-24  Rating: (Not Rated)  More info & Ratings
Changing UpdatePanel's ContentTemplate dynamically
An UpdatePanel is an ASP.NET Ajax control to update a defined area of a ASP.NET page, while the other parts of the page remain unchanged. This has two main advantages: Less amount of data is transferred over the network during the update of the page and the usability of the application increases because the user can focus the changes of the updated part of the webpage easily. An example for that behaviour is a login dialog which displays success or failure after a user's login by changing the text of a Label. This article goes one step further: I will explain how one can change the whole content of an UpdatePanel programmatically. A use-case for that could be to display information with different controls, to give the user various views to it. To keep it simple, the example in this article displays a list of items in 2 kind of views for the user: In a BulletedList and in a ListBox.
Visits: 220 Updated: 2007-7-23  Rating: (Not Rated)  More info & Ratings
A Chat with ASP.NET and Ajax
This article describes how to implement a web-chat with ASP.NET and Ajax. In the first part I introduce the technologies I used for the application. Then I explain the concept of a chat and in the last part I present the main implementations.The goal of this article is to show the interested reader how to develop a chat without browser-plugins or java-applets, just pure HTML and javascript.
Visits: 256 Updated: 2007-7-23  Rating: (Not Rated)  More info & Ratings
Simple Insert, Select, Edit, Update and Delete in Asp.Net GridView control
This article explains the methods of binding Asp.Net GridView control with simple DataSet or DataTable, and also explains the methods like Insert, Edit, Update and Delete function in the GridView.
Visits: 403 Updated: 2007-7-15  Rating: (Not Rated)  More info & Ratings
Creating a Website Statistics Application – Tracking Referring Domains and URLs to our Website.
Part 2 of a Multipart Series - In this step-by-step tutorial we will learn how to track referring domains and URLs to our website. Will also revisit the stuff we learned in part1; how to track unique users and page views. The source code is explained in detail and is available for download.
Visits: 497 Updated: 2007-7-12  Rating: (Not Rated)  More info & Ratings
Inserting Images into Database and Display it in GridView through Handler.ashx
This article explicate the method of inserting images and pictures directly into SQL Server database table and display it in an Asp.Net GridView control with the help of Handler.aspx.
Visits: 498 Updated: 2007-7-8  Rating: (Not Rated)  More info & Ratings
Create RSS Feeds to your website and Display it in browser friendly design
This article explains the concept of creating RSS feeds to the dynamically updating and releasing contents in any Asp.Net website and display it in a browser friendly design with the help of XSLT.
Visits: 252 Updated: 2007-7-8  Rating: (Not Rated)  More info & Ratings

Did you know that...
You can find banners and buttons to link to us here?
 

Sponsored Links 
3 Months Free - ASP.NET Web Hosting
3 Months Free & No Setup Fees on ASP.NET 3.5/2.0 Hosting on Windows 2008/2003 Servers – Click Here!
SFTP components for .NET
Add complete SSH and SFTP support to your .NET framework application
PureCM Software Configuration Management
Version control and integrated issue tracking - powerful and easy to use. Get your FREE trial now!
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
See how EASY REMOTE SUPPORT can be. Try WebEx FREE!
DELIVER SUPPORT MORE EFFICIENTLY. Remotely Control Applications. Leap Securely through Firewalls!
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
Computerworld The most comprehensive source of news and analysis on the technologies and management issues of information technology. ...
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by .NET konsult - Synchron Data.