Articles (2414) - Page 157

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.

2414 records found.
 
Majith
Applying Themes and Skins using ASP.NET ,C# 
Last updated on: 10 Sep 2008 11:50:53 PM by Majith | Views: 18847 | Category: ASP.NET |
In this article I am going to expalin about Themes and Skin files and how to use it on ASP.NET Files.
SheoNarayan
Solution of problem having same method name in two interfaces inheriting a class 
Last updated on: 07 Sep 2008 09:58:07 AM by SheoNarayan | Views: 37161 | Category: C# |
Votes: 1 | Rating: 5 out of 5
This articles describes the solution of having the same method name in two different interfaces inheriting a class.
Baruhari
ListView Control with DropDownExtender and Menu 
Last updated on: 02 Sep 2008 09:45:28 PM by Baruhari | Views: 34714 | Category: ASP.NET AJAX |
This article describes how to display the Context Menu on each row of the ListView Control using DropDownExtender and Menu control
SheoNarayan
Common CSS code to change html elements look and feel 
Last updated on: 01 Sep 2008 07:12:59 AM by SheoNarayan | Views: 17801 | Category: CSS 3 |
This article describe how to write common css code to change the look and feel of html elements.
SheoNarayan
SEO friendly pagination using asp:DataPager control 
Last updated on: 18 Aug 2008 10:58:14 AM by SheoNarayan | Views: 79062 | Category: ASP.NET |
This article shows how to paginate (SEO friendly) a ListView using DataPager control without enabling ViewState.
Deeraj
Generating XML from relational database tables 
Last updated on: 07 Aug 2008 07:44:53 AM by Deeraj | Views: 11172 | Category: Sql Server |
This article describes how to generate XML string from relational database tables.
Majith
ASP.NET Client Side TextBox Validation 
Last updated on: 30 Jul 2008 02:16:49 PM by Majith | Views: 38127 | Category: JavaScript |
Like most programming tasks, client validation can be as simple or as more complex .In this article I am going to explain the Client Side Texbox Number/Characters Validation with JavaScript .
  • SheoNarayan
    Service Oriented Architecture, a real world example in ASP.NET with C# 
    Last updated on: 29 Jul 2008 04:22:55 PM by SheoNarayan | Views: 103334 | Category: .NET Framework |
    Votes: 3 | Rating: 5 out of 5
    Service Oriented Architecture (SOA) a buzzing word in the world of software development these days. In this article, we will try to understand what the SOA is and how to create and consume it in ASP.NET with C#.
    SheoNarayan
    Working with HttpHandler in IIS 7 
    Last updated on: 28 Jul 2008 04:04:04 PM by SheoNarayan | Views: 43950 | 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
    Remoting.Net vs Web Services 
    Last updated on: 25 Jul 2008 08:32:29 AM by Majith | Views: 8179 | 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.
    Majith
    Uploading Files with ASP.NET ,VB.NET 
    Last updated on: 25 Jul 2008 05:28:23 AM by Majith | Views: 9182 | 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: 14778 | Category: ASP.NET |
    Adding tooltips for Items in a dropdownlist control
    Majith
    Brief Notes about Windows Communication Foundation 
    Last updated on: 23 Jul 2008 09:29:22 AM by Majith | Views: 18198 | Category: .NET Framework |
    In this article , im going to brief about WCF ( Windows Communication Foundation)
    Majith
    Reading and Writing Text Files 
    Last updated on: 23 Jul 2008 01:20:05 AM by Majith | Views: 7674 | Category: C# |
    Text files provide a common denominator format where both people and programs can read and understand. The .NET Framework includes convenience classes that make reading and writing text files very easy.
    Majith
    C# and ActiveX DLLs 
    Last updated on: 23 Jul 2008 01:06:22 AM by Majith | Views: 12150 | Category: C# |
    You may wonder about the idea of calling this DLL in a C# Application. Well, the C# language provides a way to call this COM server in a program. When we compile a C# program, Intermediate Language is generated and it is called as Managed Code. A Visual Basic 6.0 DLL is Unmanaged, meaning it is not generated by the Common Language Runtime, but we can make this VB DLL interoperate with C#, by converting it into a .NET compatible version. The following example shows how to create a simple server by using Visual Basic 6.0 and implementing it in a C# client program.