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
By Sandeep Mukhela, on October 14th, 2011%
What is an IP address?
An IP address is a set of 4 numbers assigned to each device on a computer network. When we apply this definition for the internet, the IP address can be considered a numerical representation of a website address. For example, the domain google.com would go to the IP address 73.14.213.99.
How do IP . . . → Read More: ASPHostCentral.com – The Importance of having a UNIQUE IP Address on your Website!
By C Miller, on October 12th, 2011%
When someone types in the address: www.yourdomain.com that name is translated into numbers (called an IP address) and then the computer is directed to that IP address which is the web site. Every web site on the internet is found not by its domain name but by its IP address.
You can reach a site by typing . . . → Read More: ASPHostCentral.com :: What is the difference between Shared IP and Dedicated/Unique IP Address?
By C Miller, on October 10th, 2011%
.NET 2.0 has included System.Net.Mail code namespace for supporting email programming with .NET
Following is the code snippets for how to send mail from . . . → Read More: ASP.NET Hosting :: How to send email via .NET Application
By Wayne Plotche, on October 10th, 2011%
A couple of days ago I became aware of the following article: Security Hack Exposes Forms Authentication in ASP.NET. That never sounds good and Microsoft swiftly crafted a workaround to mitigate the attack. It simply consists of changing your web.config and adding a file with some piece of code . . . → Read More: ASP.NET Hosting :: ASP.NET Security Vulnerability
By Wayne Plotche, on September 7th, 2011%
How to get Internet protocol address using asp.net.Internet protocol is a communication between the nodes. Internet protocol, which is used to track a system host and used address the location. If we need to identify the user
who are all accessing our website and store the Internet protocol address in our database is very simple and . . . → Read More: ASP.NET Hosting :: How to Get IP Address Using ASP.NET
By Wayne Plotche, on August 26th, 2011%
In most of my code I have an error notification function that sends me emails when I have exceptions. The basic call is
Dim smtp As New System.Net.Mail.SmtpClient()
smtp.Send(msg)
The mail server can be specified in the New call, but hard coding it will cause problems if the mailserver ever changes.
The mailserver can be specified in the web.config or . . . → Read More: ASP.NET Hosting :: How to Fix The SMTP Host was not Specified
By Wayne Plotche, on August 19th, 2011%
With ASP.NET, accepting file uploads from users has become extremely easy. With the FileUpload control, it can be done with a small amount of code lines, as you will see in the following example. However, please notice that there are security concerns to to consider when accepting files from users! Here is the . . . → Read More: ASP.NET Hosting :: FileUpload Control in ASP.NET
By Wayne Plotche, on July 7th, 2011%
In this Article, I am explaining how to make use JavaScript in the ASP.Net GridView control and make it more elegant by reducing postbacks.
Functions such as
1. Highlighting selected row
2. Check/Uncheck all records using single checkbox.
3. Highlight row on mouseover event.
The above three functions can be easily achieved using JavaScript thus . . . → Read More: ASP.NET Hosting :: Using JavaScript with ASP.Net GridView Control
By Stephen Jackson, on May 9th, 2011%
I’ve been trying to send email on a shared windows hosting from an Asp.NET page. I finally found the solution for the problem. It may be useful for those who have similar problems.
(I used . . . → Read More: ASP.NET Hosting :: How to Send Mail From ASP.NET on Shared Hosting