By C Miller, on January 31st, 2012%
Introduction
Cookies are also known by many names, HTTP Cookie, Web Cookie, Browser Cookie, Session Cookie, etc. Cookies are one of several ways to store data about web site visitors during the time when web server and browser are not connected. Common use of cookies is to remember users between visits. Practically, cookie is a small text . . . → Read More: ASP.NET Hosting :: Working with ASP.NET Cookies
By Stephen Jackson, on January 16th, 2012%
I’ve recently ran into a bit of trouble with maintaining the aspnet session state across a subdomains of the same application. The main problem was that the ASPNET SessionID cookie by default points to the full web address, meaning that when you navigate to a subdomain, aspnet creates a new SessionID cookie for that subdomain and . . . → Read More: ASP.NET Hosting :: ASP.NET Session State, Cookies and Subdomains
By Wayne Plotche, on December 7th, 2011%
Visual Studio 2010 has some inbuilt functionality as a tool to compare the different schemas .Schema comparison is a powerful tool that is used to compare database schemas. In tips I will give some basic step to compare schemas in Visual Studio 2010
First launch the Schema Comparison tool from Data > Schema Compare > New Schema . . . → Read More: Visual Studio 2010 Hosting :: Data Schema Comparison in Visual Studio 2010
By Wayne Plotche, on November 29th, 2011%
Visual Studio 2011 Developer Preview with .Net 4.5 has been announced few months ago.
New features and improvements in core framework are
Ability to limit how long the regular expression engine will attempt to resolve a regular expression before it times out.
Ability to define the culture for an application domain.
Console support for Unicode (UTF-16) encoding.
Support for versioning of cultural . . . → Read More: ASP.NET 4.5 Hosting :: Visual Studio 11 Developer Preview with .Net 4.5
By C Miller, on November 28th, 2011%
The Good News – In ASP.NET 4.5, we can adopt an approach using which the Model can be directly bound with the DataBound controls and CRUD and pagination operations can be implemented very effectively. It incorporates concepts from the ObjectDataSource control and from model binding in ASP.NET MVC. We will see this shortly. ASP.NET 4.5 is . . . → Read More: ASP.NET 4.5 Hosting : Working with Model Binding Feature in ASP.NET 4.5
By Wayne Plotche, on November 14th, 2011%
Introduction
The Email is important in the web site. When you are create a new website you have to implement in the email sending features as well. So in this article I will explain how to send email using ASP.NET with SMTP.
Implementation
As usual create a simple asp.net web project and then add following html code to design . . . → Read More: ASP.NET Hosting :: Email Using ASP.NET
By Wayne Plotche, on November 8th, 2011%
In this article I will show how to check username with jQuery and ASP.NET. This will let the users know if a particular username is available or not during the process when they are filling out the registration form. In tradtional way if you are going with normal postback , that will irritates the user as the passowrds . . . → Read More: ASP.NET Hosting :: Check username availability using jQuery and ASP.NET
By Stephen Jackson, on November 7th, 2011%
Have you looked for a car recently? Visited a used car website lately? noticed how they had a dropdown menu?
Well they were using a CascadingDropDown or a variation of it.
The CascadingDropDown Extender is a Drop down menu where you can categorize your data, and by using a Web Service Method, you can avoid PostBack and have . . . → Read More: ASP.NET Hosting :: AJAX Control ToolKit Tutorial CascadingDropDown Using ASP.NET C#
By Wayne Plotche, on November 1st, 2011%
I will explain how to disable right click on website using Javascript. One day I got requirement like do not allow users to right click on website to see source code of page for that I written JavaScript functionality to disable right click on website to achieve this create new website and design your Default.aspx page . . . → Read More: ASP.NET Hosting :: How to Disable Right Click on ASP.NET Web Page Using JavaScript
By Sandeep Mukhela, on October 31st, 2011%
If your ASP.NET application crashes, has an unhandled exception, hangs or otherwise becomes brain-dead, it will cause the application pool to recycle. Sometimes your application pool recycles for no obvious reason. This is usually a configuration issue or it may be caused by your app performing file system operations in the application directory. Many times developers . . . → Read More: ASP.NET 4.0 Hosting :: The Reasons Application Pool Recycle