ASP.NET Articles (487) - Page 30

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

487 records found.
 
Majith
Dynamic Menu using XML DataSource ASP.NET ,VB.NET 
Last updated on: 30 Mar 2009 09:31:41 PM by Majith | Views: 70365 | Category: ASP.NET |
I am going to explain how to build dynamic menus using XMLDataSource Asp.Net ,vb.net.
Raja
Forms Authentication in ASP.NET with C#: Basic 
Last updated on: 19 Jan 2011 10:35:47 PM by Raja | Views: 134198 | Category: ASP.NET |
This article describe how to use Forms Authentication in ASP.NET with C#. After reading this article you will be able to create a web application with Forms Authentication. This article also includes downloadable sample project with source code.
SheoNarayan
Working with HttpHandler in IIS 7 
Last updated on: 28 Jul 2008 04:04:04 PM by SheoNarayan | Views: 43802 | Category: ASP.NET |
In order to use custom HttpHandler in IIS 6 we simply used to write <httpHandlers> tag inside System.web tag in web.config file but in IIS 7 it is little tricky. In this article, I am going to show how to configure custom HttpHanlder in IIS 7.
Majith
Uploading Files with ASP.NET ,VB.NET 
Last updated on: 25 Jul 2008 05:28:23 AM by Majith | Views: 9105 | Category: ASP.NET |
In this article, I will explain how to uplaod files using ASP.NET ,VB.NET.It is a simplest way of uploading the files.
Deeraj
ToolTip for List Items 
Last updated on: 25 Jul 2008 05:23:57 AM by Deeraj | Views: 14685 | Category: ASP.NET |
Adding tooltips for Items in a dropdownlist control
Majith
About Web.Config Files 
Last updated on: 22 Jul 2008 09:17:40 AM by Majith | Views: 8076 | Category: ASP.NET |
I would like to share what I have understood about working with more than one Web.config file from my latest ASP.NET application.
Majith
Remoting.Net vs Web Services 
Last updated on: 25 Jul 2008 08:32:29 AM by Majith | Views: 8103 | Category: ASP.NET |
Both .Net Web services and .Net Remoting are Microsoft solutions for distributed application. Before choosing one of them for application development, let’s identify the differences between these technologies.
  • SheoNarayan
    Difference between asp:LinkButton, asp:ImageButton, asp:Button and asp:HyperLink control 
    Last updated on: 15 Jul 2008 01:19:18 PM by SheoNarayan | Views: 184264 | Category: ASP.NET |
    Votes: 3 | Rating: 3.67 out of 5
    In this article, I am going to describe what are the main differences between asp:LinkButton, asp:ImageButton, asp:Button and asp:HyperLink control and how/where to use them effectively.
    SheoNarayan
    How to Serialize and DeSerialize an object into XML 
    Last updated on: 10 Jul 2008 05:02:58 PM by SheoNarayan | Views: 124082 | Category: ASP.NET |
    In this article, I am going to show how to Serialize and DeSerialize an object (can be a collection object or an object) into XML format using ASP.NET System.Xml.Serialization.XmlSerializer class.
    SheoNarayan
    How to pass a value from User Control to the Page 
    Last updated on: 08 Jul 2008 06:09:32 PM by SheoNarayan | Views: 129810 | Category: ASP.NET |
    Votes: 2 | Rating: 5 out of 5
    In the process of developing an application, there are situations when you need to pass a particular value from user control to its calling page. This article describes solution to that type of problem in an easy to follow steps.
    Sbanerjee
    Limiting File Upload Sizes with ASP.NET 
    Last updated on: 09 Jun 2008 10:41:23 AM by Sbanerjee | Views: 15839 | Category: ASP.NET |
    Votes: 1 | Rating: 3 out of 5
    This example, can be taken aas code snippet, gives idea how to restrict user to upload a file/image within upload limit.
    SheoNarayan
    Getting connectionStrings / appSettings values from web.config file 
    Last updated on: 03 Jun 2008 08:54:52 AM by SheoNarayan | Views: 57998 | Category: ASP.NET |
    In this article, I am going to show how to get connectionStrings / appSettings values from web.config file. This article also contains how to get get the connectionString value at .aspx page in case you are using DataSource control like SqlDataSource.
    SheoNarayan
    Useful properties of Request object in ASP.NET 
    Last updated on: 21 Mar 2009 06:33:54 AM by SheoNarayan | Views: 51683 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    In our day to day life of ASP.NET Application development we deal with System.Web.HttpRequest (Request) object. I feel there are many properties available with Request object that does wonderful job but we hardly know or use them. In this article I am trying to explain few of them that I found very useful.
    SheoNarayan
    How to create an ASP.NET website using Visual Web Developer? (Pictorial View) 
    Last updated on: 15 Jul 2008 09:08:52 AM by SheoNarayan | Views: 187499 | Category: ASP.NET |
    Votes: 8 | Rating: 4.38 out of 5
    In this article I am going to show how to start with creating an asp.net website using Visual Web Developer 2008.
    SheoNarayan
    Writing SEO friendly url using HttpHandlers in ASP.NET 
    Last updated on: 11 May 2008 10:36:47 PM by SheoNarayan | Views: 39393 | Category: ASP.NET |
    Votes: 2 | Rating: 5 out of 5
    In general it is recommend to not use querystring in the url as search engines doesn't rank those pages well and give very low priority. To avoid querystring there are several third party component that can be used like ISAPI, url rewriter. However in this article, I am going to show you how to rewrite url using ASP.NET built in HttpHandler.