-
Simple Excel Data read and save with C#.NET
Hello All Today i will demonstrate the process of Excel data read with both DataReader & DataSet . Though the Code is not optimize but its very simple to read a excel file in OLEDB. In the example i have hard-coded the Excel file location named “Book1.xls“, and the selected sheet is “Sheet1“. We also…
-
Simple .NET Cookie Management
Hello all Today I will give a short description about using Cookie with .NET , Cookie is one of the most impotent thing to maintain scalability of server as well as manipulation user’s information easier. Generally a Cookie enabled browser can store about 20 cookies for a single domain , so what’s happen ;when you…
-
Simple multiple projects add to Visual Studio
Hello all Today I will explain how to add multiple project in Visual Studio .(That could be use for n-tier architecture or for other purpose). In .NET or in any language its wanted to fragment individual module of a system should have to be separated. In .NET we do this by adding multiple project in…
-
Simple Mail send Through .NET
Hello all ,Today i will describe how to send mail through .NETFirst we have to configure the SMTP mail server . In this context i have assumed you mail server has been configured (including web.config ).Now we have to import using System.Net; using System.Net.Mail; And through the following code we will able to send mail…
-
Easy Northwind Database installation.
Its pretty much needed to work with a existing relational database to test any new features of a language,but its really tough to get it at the right moment. We can easily get one from Microsoft’s Northwind database.First we have to install SQL Server Management Studio and then download the sample database form here .…
