Sub-Categories
ASP.NET (10)
PHP (1)
Category Articles RSS Feed
How do I query MySQL database in ASP.NET?
Viewed 12109 times since Tue, May 1, 2012
In order to query your mySQL Database with ASP.NET script, you need to organize an ODBC connection with us first. The following the snippet of the code: <%@ Page Language="VB" %> <%@ import Namespace="System.Data.Odbc" %> <script runat... Read More
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 10118 times since Mon, Apr 30, 2012
This error message occurs simply because you have not setup your own default page. As you may know, you can have your own default page such as home.aspx, default.aspx, default.php, etc. If you have this kind of default page, you need to add the... Read More
Domain Name Server (DNS) Amplification Attack
Viewed 9055 times since Wed, Oct 15, 2014
/Domain Name Server (DNS) Amplification Attack Overview A Domain Name Server (DNS) Amplification attack is a popular form of Distributed Denial of Service (DDoS), in which attackers use publically accessible open DNS servers to flood a... Read More
Sample Code to Send email using ASP.NET 2
Viewed 9021 times since Tue, May 1, 2012
The following code is developed in C#: *************************************** //import the Mail Interface using System.Net.Mail; protected void sendMail() {      //create the mail message      MailMessage... Read More
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 8939 times since Mon, Jul 17, 2017
Problem: Let's Encrypt SSL fails to work even it has been activated on the Control Panel Solution:  This solution applies to ASP.NET Core application with MVC The problem is that Let's Encrypt SSL targets a folder .well-know inside... Read More
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 8685 times since Tue, Apr 2, 2013
Usually we won’t got "Validation of viewstate MAC failed” error in our site all the time. Normally the site works fine and doesn't throw any errors if you load the site and use it at a regular pace. The error only occurs when you load... Read More
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6067 times since Tue, May 1, 2012
In order to send email from our mail servers, you need to allow SMTP Authentication on your code. If you host your website and your email on our server, there will be NO remote connection made between your site and your mail service on our server.... Read More
Sample Code to Send email using ASP.NET1.1
Viewed 4940 times since Tue, May 1, 2012
Our mail server is configured with SMTP authentication and all your code need to use SMTP Authentication before you can send email. If your code does not use SMTP authentication, the email will not be sent. private void... Read More
My website session times out earlier than expected. Why?
Viewed 4544 times since Tue, May 1, 2012
Please be advised that since your site is hosted on a shared server, there are other services on the server that may impact your site session. A bad programming practice (infinite looping, etc), a sudden jump in one of the site's traffic, etc... Read More
How do I redirect a subdomain to a subdirectory?
Viewed 3546 times since Tue, May 1, 2012
When the requests are redirected using an ASP file, the URL in browser for redirected domains will show the correct domain name and the directory name where the request is being redirected. You can also redirect the requests to a specific file. ... Read More
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 3447 times since Wed, May 2, 2012
Please be advised that ASP.NET 3.5 is just a superset of ASP.NET 2.0. Therefore, by adjusting your ASP.NET version to ASP.NET 2.0 via our Control Panel, you can make use of ASP.NET 3.5 directly. To know how you can adjust the ASP.NET version, please... Read More
I cannot see my website. What should I do?
Viewed 3337 times since Thu, May 3, 2012
Let's say you host a website called http://www.yourDomain.com and one day, you realize that your website is inaccessible. Please do not panic and please kindly check few things on your end: 1. Please open your Command Prompt window and please... Read More
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3176 times since Thu, May 3, 2012
Please be advised that the "500 Internal Server" error message can be caused by many factors. This is a generic error message thrown by the server. In order to find the actual error message, you need to contact us via our Help Desk System so that... Read More
How do I query MySQL Database in PHP ?
Viewed 2926 times since Tue, May 1, 2012
Please follow the following guidelines: <html>      <head>              <title>MySQL Test Code</title>      </head>      <body>       ... Read More
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 2495 times since Tue, May 1, 2012
CDONTS is no longer supported on Windows 2003 server. Microsoft introduced CDO back several years ago to replace CDONTs. You will need toconvert your code to use CDO. Please be advised that most of our servers are now in Windows Server 2008 and... Read More
Do you allow custom COM components?
Viewed 2437 times since Tue, May 1, 2012
Yes, we do allow Custom Components and we have to charge setup fee for your COM Components installation. Installation of Custom COM Components is subject to our system administrators review Read More
About Azure Key Vault
Viewed 1107 times since Mon, Nov 2, 2020
You probably have a website that is pulling a password that is stored in AZURE Key Vault. The code is working fine on your local PC but it would not work after you deploy the application to our server. To resolve this issue, please check the... Read More