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

home  »  blogs  »  Vinz  »  Implementing ASP.NET WebParts with Different Authentication modes

To rate this blog entry please  register or login

Author

Vinz Vinz (Member since: 4/15/2009)
Working as a SDE at NCR Corporation and specializing on ASP.NET technologies. I am an active forum member and a regular contributor at the official ASP.NET forum site and one of the Top Community member with All- Star recognition level.I voluntarily spent my extra time helping other geeks through forums, blogs and articles. I have been awarded as Microsoft MVP - ASP/ASP.NET for 2009.

View Vinz '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:

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