| Articles |
3-Tier Architecture in ASP.NET with C#3-Tier architecture is a very well know buzz word in the world of software development whether it web based or desktop based. In this article I am going to show how to design a web application based on 3-tier architecture.Views: 572018 | Posted by: SheoNarayan | Votes: 21 | Rating: 4.71 out of 5 |
Calling methods of different classes into same Transaction Scope using System.TransactionsWe must have came across a situation where we have to call methods of different classes under same transaction scope and rollback the operations if any error occurs during execution of any methods. For eg. If we have Debit and Credit class and DebitAmount method of Debit class executed successfully but an error occurred while calling CreditAmount method of Credit class, we should be able to rollback all operations done by DebitAmount method. In scenario like this we can use System.Transactions.TransactionScope to rollback all operations done by DebitAmount method.Views: 9655 | Posted by: SheoNarayan | Votes: 1 | Rating: 4 out of 5 |
Modification of IIS Metabase in C#System.DirectoryServices namespace can be used to access Internet Information Service(IIS). You can create, delete and change the properties of web servers, virtual directories, directories and files. Also you can invoke IIS methods.Views: 6305 | Posted by: Suhailnabi | Votes: 1 | Rating: 5 out of 5 |
|
|
Boxing and Unboxing in C# .NetIn this article I will explain the concepts of Boxing and UnBoxing. C# provides us with Value types and Reference Types. Value Types are stored on the stack and Reference types are stored on the heap. The conversion of value type to reference type is known as boxing and converting reference type back to the value type is known as unboxing.Views: 12832 | Posted by: Suhailnabi | Votes: 4 | Rating: 4 out of 5 |
ASP.Net Tips and TricksI'm Going to explain now on some Control tip and tricks which will help and increase the speed of the webpagesViews: 4153 | Posted by: Suhailnabi | Votes: 1 | Rating: 5 out of 5 |
ASP.NET - Sorting a GridView Bound to a Custom Data ObjectThis article presents a technique for sorting a GridView populated from a list of custom data objects. It relies on the view state and does not require additional calls to the database.Views: 13652 | Posted by: Suhailnabi | |
Dynamically generating thumbnail images in ASP.NET with C# without affecting initial page load timeCreating thumbnail with ASP.NET with C#. There are several ways to do that but this way I feel much better and efficient and also this doesn't affect initial page load time.Views: 23272 | Posted by: SheoNarayan | Votes: 2 | Rating: 5 out of 5 |
State management in ASP.NETWeb pages rarely be stand alone. Web applications almost always need to track users who visits multiple pages, whether to provide personalization, store information about a user or to track usage for reporting purposes.Views: 260287 | Posted by: Dsvramana | Votes: 11 | Rating: 4.36 out of 5 |
|
|
Transferring data from SQL Server database to MySql databaseHi, The other day I was facing problem while migrating my Sql Server database tables into MySql database. I tried to google it but couldn't find any great solution that can do it through code easily.
Thought to share this simple code to all of you.Views: 8044 | Posted by: SheoNarayan | |
Retrieving values of all server environment variablesTo list values of all sever environment variables in one go.Views: 4803 | Posted by: Chinnu21 | |
Character Set used for HTML, XSLT, XMLFollowing is the table containing entities or characters used for referencing in HTML, XSLT, and XML as a complete reference.Views: 8323 | Posted by: Chinnu21 | |
Convert HTML tables to a DataSetSummary: An example of how we can extract data from HTML tables and create a DataSet object containing this data.Views: 19174 | Posted by: Suhailnabi | Votes: 1 | Rating: 5 out of 5 |
Type FundamentalsType FundamentalsViews: 2414 | Posted by: Suhailnabi | |
An Overview of ASP.NET 3.5 and Visual Studio 2008On November 19, 2007, Microsoft officially released the ASP.NET version 3.5 and Visual Studio 2008. Like with the progression from ASP.NET 2.0 to 3.0, the features in ASP.NET 3.5 are additive, meaning that the core assemblies installed from the .NET Framework version 2.0 are still used by the 3.0 and 3.5 versions. The In short, ASP.NET 3.5 doesn't change or take away or break any functionality, concepts, or code present in 2.0 - it simply adds new types and features and capabilities to the framework.Views: 5582 | Posted by: Suhailnabi | |
Overview of Oracle Providers for ASP.NETOracle Providers for ASP.NET is a collection of ASP.NET 2.0 providers that follow the ASP.NET 2.0 provider model and uses Oracle Database as the data source. Microsoft ASP.NET 2.0 includes a number of services and providers that store application state in databases and other storage media. Oracle offers the following providers:
¦ Membership Provider
¦ Role Provider
¦ Site Map Provider
¦ Session State Provider
¦ Profile Provider
¦ Web Events Provide
r¦ Web Parts Personalization Provider
¦ Cache Dependency ProviderViews: 7552 | Posted by: Suhailnabi | |