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 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
By Stephen Jackson, on May 5th, 2011%
You may receive the following error message while browsing an asp.net application
“Server Error in ‘/application name’ Application
——————————————————————————–
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on . . . → Read More: ASP.NET Hosting :: Error – “Server Error in ‘/application name’ Application
By C Miller, on May 3rd, 2011%
ASP.net by default calls the function window.scrollTo(0,0) after the validation failure from ASP.net validators but not always we have the validation summary control placed at the top. There are instances where we need to place validation summary at some other location but by doing this, instead the user being scrolled to see the validation error, he . . . → Read More: ASP.NET Hosting :: How To Scroll To Validation Summary