Using StreamReader To Read HTML File/TextFile

Using StreamReader To Read HTML File/TextFile
Here I will explain how to read text or html file using StreamReaderIn previous articles I explained write a html file using StreamWriter,now I will explain how to read text or html file using StreamReader. we need to write the following...

Using StreamWriter To Write HTML File

Using StreamWriter To Write HTML File
Here, I will explain how to add textbox text into HTML file using StreamWriter.First,we need to write the following code in aspx page.Default.aspx <div>         <table border="1">          ...

Create Cookie In C#

Create Cookie In C#
Here simple code for creating cookie and value show on button click..!! using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page {  ...

3 Tier Architecture Example In Asp.Net With C#

3 Tier Architecture Example In Asp.Net With C#
Here I will how to create or implement 3-tier architecture for our project in asp.net  Basically 3-Tier architecture contains 3 layers 1.    Property Layer  2.    Business Logic Layer(BLL)  3.    Data...