DotNetShoutout - Stories tagged with ASP.NET 2.0 tutorial
3
Shouts

Display Facebook Online Users in Aspnet | DevelopersCode

published 647 days, 6 hours, 34 minutes ago posted by taanu51taanu51 647 days, 17 hours, 27 minutes ago
Thursday, August 11, 2011 9:01:49 PM GMT Thursday, August 11, 2011 10:08:30 AM GMT
Hi friends, In this article i would like to explain a simple trick to integrate chating popup window in Aspnet for Facebook lovers First Open the visual studio 2008 Next,select a Aspnet Website and change the name as FacebookChating.aspx Next,Click on the source page of FacebookChating.aspx write the following code in the Head sectionand write the following code in the body sectionThats it..friends.....Subscribe to Get this Post as E Book Other Recommended Posts: Aspnet , Facebook (more)
category: Web Dev | clicked: 23 | comment | | source: www.developerscode.com
tags: ASP .NET 4.0, sql 2005, Facebook, ASP.Net 2.0, ASP .NET AJAX, SQL 2008, C#, c sharp, ASP.NET 2.0 tutorial, ASP .NET 4, C# .NET, ASP.NET
3
Shouts

Simple steps to understand Delegates in C# | DevelopersCode

published 647 days, 6 hours, 34 minutes ago posted by taanu51taanu51 647 days, 17 hours, 29 minutes ago
Thursday, August 11, 2011 9:01:49 PM GMT Thursday, August 11, 2011 10:06:41 AM GMT
Hi friends, in this article I would like share some important and simple steps about Delegates in C#Steps: 1) Delegates are similar to C++ Function Pointers2) Delegates holds the address of one or Address of many functions 3) Delegate Encapsulates (hides) some information like Class names and method names4) Delegates divided in to 2 types àSingle cast Delegate àMulticast Delegate Single cast Delegate: Single cast holds the address of one function Multicast Delegates: à Multicast cast delegates ho... (more)
category: Web Dev | clicked: 20 | comment | | source: www.developerscode.com
tags: ASP .NET 4.0, sql 2005, ASP.Net 2.0, ASP .NET AJAX, SQL 2008, C#, c sharp, ASP.NET 2.0 tutorial, ASP .NET 4, C# .NET, ASP.NET
3
Shouts

Difference between Data Reader and Dataset | DevelopersCode

published 647 days, 6 hours, 34 minutes ago posted by taanu51taanu51 647 days, 17 hours, 30 minutes ago
Thursday, August 11, 2011 9:01:49 PM GMT Thursday, August 11, 2011 10:05:46 AM GMT
Hi friends, in this article I would like share some important differences between Data Reader and Dataset Data set: --> Dataset is a class, which is the part of System. Data Namespace --> Dataset supports connectionless architecture. That is, active connection is not required while working with datasets --> Dataset cannot communicate directly with database Hence data adapter is required to carry the data in between dataset and database --> Data Adapter is used to carry the data but ... (more)
category: Web Dev | clicked: 14 | comment | | source: www.developerscode.com
tags: ASP .NET 4.0, sql 2005, ASP.Net 2.0, ASP .NET AJAX, SQL 2008, C#, c sharp, ASP.NET 2.0 tutorial, ASP .NET 4, C# .NET, ASP.NET
3
Shouts

Develop your own TextBox with a new enumerated property called as Input Type | DevelopersCode

published 647 days, 6 hours, 34 minutes ago posted by taanu51taanu51 647 days, 17 hours, 31 minutes ago
Thursday, August 11, 2011 9:01:49 PM GMT Thursday, August 11, 2011 10:04:36 AM GMT
Hi Friends,In this tutorial i wolud like to explian very interesting topic about creating your own Textbox.Here we are creating two types of text boxes .one Textbox for accepting only digits and another textbox accepting only alphabets(Upper case and lower case) Step 1)First open the visual studio 2008 Step 2)Next open the windows forms control library project and change the name as UserDefinedTextBox Step 3)next open the code view Step 4)change the class declaration as follows public partial clas... (more)
category: Web Dev | clicked: 12 | comment | | source: www.developerscode.com
tags: ASP .NET 4.0, sql 2005, ASP.Net 2.0, ASP .NET AJAX, SQL 2008, C#, c sharp, ASP.NET 2.0 tutorial, ASP .NET 4, C# .NET, ASP.NET
3
Shouts

What is difference between HTTP Handler and HTTP Module.

published 899 days, 13 hours, 53 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 899 days, 21 hours, 35 minutes ago
Thursday, December 02, 2010 1:42:44 PM GMT Thursday, December 02, 2010 6:01:20 AM GMT
Here are the difference between HTTP Handlers and HTTP Modules. Http Handlers: Http handlers are component developed by asp.net developers to work as end point to asp.net pipeline. It has to implement System.Web.IHttpHandler interface and this will act as target for asp.net requests. Handlers can be act as ISAPI dlls the only difference between ISAPI dlls and HTTP Handlers are Handlers can be called directly URL as compare to ISAPI Dlls. Http Modules: Http modules are objects which also participate i... (more)
category: Web Dev | clicked: 0 | comment | | source: jalpesh.blogspot.com
tags: ASP.NET 2.0 tutorial
2
Shouts

When it Comes to Asp.Net: ICallback Event Handler

posted by ashishsarda99ashishsarda99 1010 days, 19 hours, 22 minutes ago
Friday, August 13, 2010 8:14:23 AM GMT
Share|This article will explain the use of “ICALLBACKEventHandler” in asp.net 2.0. About ICallbackEventHandler: ASP.NET 2.0 introduces an interface ICallbackEventHandler (System.Web.UI.ICallbackEventHandler) to allow asynchronous communication with the server. Unlike Postback, in Callback only user defined information is sent back to the server. ICallbackEventHandler uses DoCallback event to send user defined data to server (instead of postback event), and return the String to client; on client si... (more)
category: Web Dev | clicked: 0 | comment | | source: aspdotnetmatters.blogspot.com
tags: ICallback, ASP.NET 2.0 tutorial, web development, Ajax, ASP.NET
3
Shouts

dotnetExpertGuide: EMBED JAVASCRIPT FILE IN .NET ASSEMBLY

posted by nandipnandip 1154 days, 18 hours, 26 minutes ago
Monday, March 22, 2010 9:09:50 AM GMT
EMBED JAVASCRIPT FILE IN .NET ASSEMBLY With the release of ASP .NET 2.0 AJAX Extensions 1.0, building AJAX application with .NET technology is quite easier without writing single line of JavaScript. But still if we want to develop rich AJAX application then coding in JavaScript is must for greater control over the application. In this article, I will explain how to embed JavaScript file in Assembly and how to invoke this embedded file from ASP .NET web form. This technique is useful when we h... (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetexpertguide.blogspot.com
tags: ASP.NET 3.5, ASP.NET 2.0 tutorial, ASP.NET