Articles (2414) - Page 131

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.
 
Questpond
9 simple steps to run your first Azure Table Program 
Last updated on: 11 Jan 2010 01:56:52 AM by Questpond | Views: 13936 | Category: Azure |
Azure has provided 4 kinds of data storages blobs, tables, queues and SQL azure. In this section we will see how to insert a simple customer record with code and name property in Azure tables.
Rpillai
Getting friendly with jQuery (A beginners guide + added auto TOC generation + text entry limit) 
Last updated on: 09 Jan 2010 08:36:41 AM by Rpillai | Views: 28668 | Category: jQuery |
Votes: 2 | Rating: 5 out of 5
jQuery is a javascript library with rich API to manipulate DOM, event handling, animation and ajax interactions. The following are the essential features of jQuery that makes it so appealing for client side scripting.
Mehulthakkar1
Serialize Object in JavaScript 
Last updated on: 08 Jan 2010 07:06:08 AM by Mehulthakkar1 | Views: 44352 | Category: JavaScript |
Votes: 1 | Rating: 5 out of 5
This Article will help you getting the serialized object from javascript.
Questpond
Simple 6 steps to run your first Azure Worker Role Program 
Last updated on: 05 Jan 2010 01:22:59 AM by Questpond | Views: 16209 | Category: Azure |
we have seen 5 simple steps to create web role application. Web role projects in Azure are like web applications. Azure has one more type of project i.e. worker role. Worker role applications are back ground processing application like windows process which runs on the back ground. In this article we will try to understand 6 basic steps to create worker role project and as we run through the article we will try to understand the various fundamental methods which are executed in worker role projects.
Virendradugar
Set Page Position after asyncPostback in AJAX 
Last updated on: 04 Jan 2010 12:40:43 PM by Virendradugar | Views: 25195 | Category: ASP.NET AJAX |
This article explains a simple trick to set the page position to any coordinates after async Postback.
Virendradugar
Common misconception regarding ViewState and TextBox 
Last updated on: 04 Jan 2010 12:37:02 PM by Virendradugar | Views: 23877 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
This article explains a common myth regarding the Viewstate and textbox.
Mehulthakkar1
AJAX DLL 
Last updated on: 03 Jan 2010 11:28:17 PM by Mehulthakkar1 | Views: 18615 | Category: ASP.NET AJAX |
An Ajax DLL is used to call server side method asynchronously without processing the whole page life cycle.
  • Questpond
    Simple 5 steps to run your first Azure program 
    Last updated on: 31 Dec 2009 02:03:56 PM by Questpond | Views: 13528 | Category: Azure |
    In this article we will look in to 5 basic steps which will help us to run our first azure program. In this article we will understand how to create a simple web role application and while doing the same we will understand some development concepts of Azure.
    Techieshravan
    View State? 
    Last updated on: 30 Dec 2009 06:42:54 PM by Techieshravan | Views: 6569 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    How the ViewState is maintained by ASP.NET?
    Mehulthakkar1
    How to Use Linq 
    Last updated on: 30 Dec 2009 06:33:48 PM by Mehulthakkar1 | Views: 24533 | Category: LINQ |
    Votes: 3 | Rating: 5 out of 5
    This is the article which will explain how to use linq
    Questpond
    Windows Azure FAQ Part 1 
    Last updated on: 29 Dec 2009 05:37:13 AM by Questpond | Views: 19526 | Category: Azure |
    Different people have different obsessions and I have this stupid obsession of writing articles in FAQ formats :-) . The more I try to write articles in normal format I end up with a FAQ. My only thought process of writing articles in FAQ format is that we end up talking to the point rather than talking about trees and rivers , many may disagree.
    Chikul
    IDENTITY columns in SQL Server 
    Last updated on: 23 Dec 2009 09:07:12 AM by Chikul | Views: 21740 | Category: Sql Server |
    The IDENTITY columns are auto incrementing columns provided by SQL Server. There can only be one IDENTITY column per table. SQL Server will take care of incrementing this column automatically.
    Chikul
    SET VS. SELECT in SQL Server 
    Last updated on: 23 Dec 2009 09:04:01 AM by Chikul | Views: 9847 | Category: Sql Server |
    SET and SELECT both key words are used to Assign Variables in SQL Server. SET and SELECT both specifies the columns to be changed and the new values for the columns. The values in the specified columns are updated with the values specified in the SET and SELECT in all rows that match the WHERE clause search condition. If no WHERE clause is specified, all rows are updated.
    Chikul
    Reflection 
    Last updated on: 18 Dec 2009 08:27:07 PM by Chikul | Views: 7751 | Category: .NET Framework |
    Reflection is one of the main features of .Net framework . In short it is a powerful way of collecting and manipulate information present in application's assemblies and its metadata. Metadata contain all the Type information used by the application.(Metadata - Data about data). The ability to obtain information at runtime also makes it even more advantageous. When reflection is used along with system.type, it allows the developer to get the valuable information about all the types and about the assemblies. We can even create the instances and then invoke various types that are used across the application.
    Poster
    How to Serialize and DeSerialize an ArrayList having a custom object inside it 
    Last updated on: 15 Dec 2009 08:11:09 PM by Poster | Views: 83344 | Category: C# |
    This article describes how to Serialize and DeSerialize an ArrayList having a custom object inside it.