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...
Home » Archives for December 2014
Using StreamWriter To Write HTML File
in
asp.net,
c#
- on 08:40
- No comments
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#
in
asp.net,
c#,
Cookie
- on 08:37
- No comments
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#
in
asp.net,
c#
- on 08:32
- No comments

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...