There are 101 guests and 0 members online. Who is online?

home  »  blogs  »  vivek_iit  »  Base Page Class in ASP.NET

To rate this blog entry please  register or login

Author

vivek_iit vivek_iit (Member since: 11/27/2008)
I am one of the administrators at CodeAsp.Net and I love programming, architecting solutions, code reviews, teaching and writing about ASP.NET.

View vivek_iit 's profile

Comments ( No Comments Yet)

Post a comment

Name:
 *  

Email: (your email is kept secure)
 *  

Website:



example: "http://codeasp.net/"

Comment (No HTML)  

Type the characters:
 *
 
   

Join CodeAsp.Net for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

vivek_iit's latest blog posts

Latest community blog posts

  • samir.nigam Binding a TreeView control to a hierarchical data structure, Part II
    2/4/2010
    Download demo application - 6.00 KB Introduction In my last blog Binding a TreeView control to a hierarchical data structure, Part I , I had describe how one can bind a TreeView control to a hierarchical data structure through recursion. Now I’m going to ...
  • mohit Implement a browse button in asp.net
    1/28/2010
    In this blog I will explain how to Implement a browse button in asp.net Web Application. You can use Fileupload asp.net Control.     <asp:FileUpload ID="fuTest" runat="server" />   Happy Coding:)
  • mohit Prevent Duplicate Value in a Table
    1/22/2010
    Normal 0 false false false EN-US X-NONE X-NONE ...
  • mohit Alert Box From ASPX Code-Behind Code
    1/20/2010
    In this blog I will explain how to open a JavaScript alert from Code-behind file.I want to show ‘Welcome’ alert on page load. Below is my code:-protected void Page_Load(object sender, EventArgs e) { Response.Write("<script>alert('Welcome')</sc...
  • mohit DataTable in ASP.NET
    1/14/2010
    In this blog I will explain how to create DataTable. here is my code:- creating Table first- private DataTable myTestTable() { DataTable myTable = new DataTable(); DataColumn myColumn; myColumn = new DataColumn(); myColumn.DataType = Type.GetT...