.NET news » Search results

Search results for query "net" (410):

ASP.NET MVC Application In Action - DailyJournal

A simple visual task manager application using asp.net mvc and jquery.
2010-05-20 05:51:00   Source: ASP.NET MVC Application In Action -...   Tags: ASP.NET

A Simple Tutorial on Developing ASP.Net Applications in MVC Pattern

This article gives a simple tutorial on developing ASP.Net applications in MVC pattern.

NHunspellTextBoxExtender - A Spellchecking IExtenderProvider for TextBoxes using Hunspell for .NET

With many applications, spell checking can be a vital aspect to include. Most people are accustomed to the spell checking capabilities of products like Microsoft Word or OpenOffice. There are products available for purchase that can add spell checking capability, such as SharpSpell that can cost hundreds of dollars. Unfortunately, there is a lack of Open Source, freely available tools that can provide the functionality of Microsoft Word. That is why I began to work on a spell checking IExtenderProvider that could extend any control that inherits TextBoxBase (both TextBox and RichTextBox inherit TextBoxBase).
2010-05-07 15:43:00   Source: NHunspellTextBoxExtender - A Spellchecking...   Tags: Examples GUI

Sorting Algorithms Codes in C#.net

This Article Have the Codes of QuickSort,MergeSort,BubbleSort,HeapSort
2010-05-05 13:33:00   Source: Sorting Algorithms Codes in C#.net   Tags: Algorithms C#

MailMergeLib - A .NET Mail Client Library

MailMergeLib is a SMTP mail client library. It makes use of .NET System.Net.Mail and provides comfortable mail merge capabilities. MailMergeLib corrects a number of the most annoying bugs and RFC violations that .NET 2.0 to .NET 4.0 suffer from.
2010-05-03 13:27:00   Source: MailMergeLib - A .NET Mail Client...   Tags: Internet

6 Important .NET Concepts: Stack, Heap, Value types, Reference types, Boxing and Unboxing

This article will explain 6 important concepts Stack, heap, value types, reference types, boxing and unboxing. This article starts first explaining what happens internally when you declare a variable and then it moves ahead to explain 2 important concepts stack and heap. Article then talks about reference types and value types and clarifies some of the important fundamentals around them. Finally the article concludes by demonstrating how performance is hampered due to boxing and unboxing with a sample code.
2010-04-27 14:12:00   Source: 6 Important .NET Concepts: Stack,...   Tags: C# VB.NET

File Download in ASP.Net and Tracking the status of success/failure of Download

This article demonstrates how to provide download of a file in ASP.net along with tracking its success and failure. It will be useful especially in e-commerce system that offers downloadable product option. In e-commerce system it is very important to keep track of status of download.
2010-04-27 08:32:00   Source: File Download in ASP.Net and...   Tags: ASP.NET

Dumping .NET classes to debug output

Class to convert .NET classes into readable debug output with less effort
2010-04-22 14:57:00   Source: Dumping .NET classes to debug output   Tags: Debug

ASP.NET AJAX MultiHandleSliderExtender - Slide by Year and Month

In this tutorial, I will demonstrate how to use MultiHandleSlider extender to choose or display year and month in a range. This control eliminates the need to use four DropDownlist controls to hold the range values and validation control for validating user selection. Then we will use the Column Chart to display number of cars on Sesame Street based on the selected range values.
2010-04-20 12:53:00   Source: ASP.NET AJAX...   Tags: Ajax

ASP.NET Application And Page Life Cycle

In this article we will try to understand what are the different events which takes place right from the time the user sends a request, until the time request is rendered on the browser. So we will first try to understand the two broader steps of an ASP.NET request and then we will move in to different events emitted from ‘HttpHandler’, ‘HttpModule’ and ASP.NET page object. As we move in this event journey we will try to understand what kind of logic should go in each every of these events.
2010-04-17 23:06:00   Source: ASP.NET Application And Page Life Cycle   Tags: ASP.NET