Articles (2414) - Page 126

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.
 
Cp_raj
Asp.net Treeview control - Adding parent with n- number of child 
Last updated on: 27 Apr 2010 02:01:50 AM by Cp_raj | Views: 20166 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
To Add n- number of child to the treeview
Cp_raj
IE 8.0 Version check 
Last updated on: 26 Apr 2010 09:58:07 PM by Cp_raj | Views: 9678 | Category: JavaScript |
Votes: 1 | Rating: 3 out of 5
To check the IE 8.0 Version after install in server
Pandians
SQL Server 2008 T-SQL Enhancements 
Last updated on: 26 Apr 2010 02:00:53 AM by Pandians | Views: 19300 | Category: Sql Server |
Votes: 13 | Rating: 4.92 out of 5
SQL Server 2008 introduces some T-SQL enhancements which is used to improve the database performance and maintenance.
Ashokdiggavi
Assign / Update the gridview Checkbox's Checked property value from a datafield that is of non-boolean datatype that is bound to a SQLDataSource. 
Last updated on: 23 Apr 2010 10:29:12 PM by Ashokdiggavi | Views: 26353 | Category: ASP.NET |
Votes: 2 | Rating: 4 out of 5
If we could have accessed the Bind method ,that implicitly performs two-way binding, in the code-behind then we could have just override the RowDatabound event and assigned the value to the gridview's checkbox control using the Bind method. But unfortunately the Bind is not available in ASP.Net 2.0 instead Eval only is available. We could still achieve this in two simple and easy steps. 1. Wrap the Eval(fieldname) HTML code in a function eg: Checkvalue that checks the datafield value, performs transformations to True OR False values and assigns to Chekced property. 2. Override the RowUpdating event of gridview and update only the Checked property's value since the SQLDataSource that is bound to gridview will take care of remaining fields to update. Please let me know if this has helped anyone solve the problem!!
Muhilan
Hash Algorithm in .Net 
Last updated on: 23 Apr 2010 02:40:58 PM by Muhilan | Views: 18391 | Category: Windows Forms |
In this article you will learn about the hash algorithm and types are available in .Net.
SurajRane
Creating Custom Configuration section 
Last updated on: 22 Apr 2010 10:21:12 PM by SurajRane | Views: 12594 | Category: ASP.NET |
Votes: 3 | Rating: 4.33 out of 5
Many times we come across situations when we need to define our own settings( Rather than using AppSettings key/value). This article is just a try to make you understood how we can achieve such functionality.
Muhilan
How to create a key in the registry using C#? 
Last updated on: 22 Apr 2010 01:53:43 PM by Muhilan | Views: 45091 | Category: Windows Forms |
Votes: 4 | Rating: 5 out of 5
In this article, I will be explain How to create a key in the registry using C#?
  • Brij
    A Beginner's view : Web.config 
    Last updated on: 21 Apr 2010 04:09:47 PM by Brij | Views: 139488 | Category: ASP.NET |
    Votes: 6 | Rating: 4.83 out of 5
    In this artcle , I will be explaining the common and mostly used web.config tags, their different sections and also dicuss about securing the the config file.
    Questpond
    ASP.NET application and page life cycle 
    Last updated on: 17 Apr 2010 10:53:37 PM by Questpond | Views: 106614 | Category: ASP.NET MVC |
    Votes: 2 | Rating: 5 out of 5
    In this article we will try to understand what are the different events which takes place right from the time the user sends a request, until the time request is rendered on the browser. So we will first try to understand the two broader steps of an ASP.NET request and then we will move in to different events emitted from ‘HttpHandler’, ‘HttpModule’ and ASP.NET page object. As we move in this event journey we will try to understand what kind of logic should go in each every of these events.
    Naveenmanam
    Dot.NET Remoting 
    Last updated on: 14 Apr 2010 03:23:30 PM by Naveenmanam | Views: 10436 | Category: ADO.NET |
    Votes: 1 | Rating: 4 out of 5
    .NET Remoting is more versatile and extensible in terms of enabling communication between objects using different transport protocols and serialization formats. TCP, HTTP, and custom protocols are supported as are Binary, SOAP, and custom formats. Multiple-object creation and lifetime modes are supported including Singleton, SingleCall, and Client-Activated. Remoting requires a host process, which can be IIS, or a Microsoft® Windows service or executable written in .NET.
    Abhi2434
    SpellChecker in WPF 
    Last updated on: 11 Apr 2010 12:45:57 PM by Abhi2434 | Views: 45527 | Category: WPF |
    Votes: 7 | Rating: 3.71 out of 5
    WPF has an inbuilt feature of Spellchecking. In this article I have explored the SpellCheck functionality of WPF TextBoxBase object. CustomDictionaries introduced with WPF 4.0 is also discussed with this article
    Shivamadishet
    Hibernation Tutorial - part 1 
    Last updated on: 10 Apr 2010 04:02:37 PM by Shivamadishet | Views: 20943 | Category: Others |
    Votes: 1 | Rating: 3 out of 5
    Hibernate is concerned with helping your application to achieve persistence. Persistence simply means that we would like our application's data to outlive the applications process. Specifically, Hibernate is concerned with data persistence as it applies to relational databases.
    Abhi2434
    Working with WebBrowser in WPF 
    Last updated on: 06 Apr 2010 04:22:40 AM by Abhi2434 | Views: 300356 | Category: WPF |
    Votes: 11 | Rating: 3.91 out of 5
    This article demonstrates how you can use WebBrowser control to show html document within your WPF application. You will find the basic usage of powerful WebBrowser control that comes with WPF. You can also find how you can communicate the document from external wpf application and vice versa. A sample application is also provided to demonstrate each of these.
    Questpond
    Comparison of Architecture presentation patterns MVP(SC),MVP(PV),PM,MVVM and MVC 
    Last updated on: 04 Apr 2010 02:41:55 AM by Questpond | Views: 40118 | Category: ASP.NET |
    Votes: 8 | Rating: 4.75 out of 5
    This article will compare four important architecture presentation patterns i.e. MVP(SC),MVP(PV),PM,MVVM and MVC. Many developers are confused around what is the difference between these patterns and when should we use what. This article will first kick start with a background and explain different types of presentation patterns. We will then move ahead discussing about the state , logic and synchronization issues. Finally we will go in detail of each pattern and conclude how they differ from each other.
    Abhi2434
    ASP.NET 4.0 : Manipulate ClientID using ClientIDMode 
    Last updated on: 30 Mar 2010 07:06:08 PM by Abhi2434 | Views: 66717 | Category: ASP.NET |
    Votes: 18 | Rating: 3.67 out of 5
    In this article I will discuss how you can manipulate the ClientId of each control being rendered in the browser. The article also demonstrates how you can use Predictable ClientId for data bound controls.