• How do I send email using ASP.NET?

    Simply copy the code below and save it as textemail.aspx C# Version <%@ Page Language="C#" %> <%@ Import Namespace="System.Net.Mail" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server">  protected void btnSubmit_Click(object sender, EventArgs e)  {   try   {    MailMessage message = new MailMessage(txtFrom.Text, txtTo.Text, txtSubject.Text, txtBody.Text);    SmtpClient emailClient = new […]

  • How do I enable my ASP.net application to show me remote error messages?

    Please note that the Applied Innovations servers are production servers and the server your site is served by is utilized by as many as 250 other websites. For this reason the Applied Innovations servers are not to be used as a development platform and this may result in account termination or suspension. However, sometimes when […]

  • How do I create a virtual directory or set a folder as an application?

    Often you’re required to set a directory as an application in IIS. In the past this process was done by hand by the system administration but with our control panel you’re able to do this yourself easily with a few simple steps.  When is this needed? Generally when you want to run a ASP.net application […]

  • Can I run both ASP and ASP.net?

    Yes both languages will run without interference. In fact Applied Innovations supports, PHP, PERL, ASP and ASP.net at this time. <!– –>

  • Are there any linkFreeze and HTTP Compression tools (SFCompress, etc) incompatibilities?

    LinkFreeze from Helicontech.com requires that HTML pages (including those generated by ASP, ASP.net, PHP, etc) be compressed after linkfreeze has been called.  Applications such as SFCompress actually compress the page during compilation thus compressing the content before LinkFreeze can work.  Additionally, all of our windows 2003 based hosting servers already have HTTP compression enabled so these compression tools provide […]

  • Using CDONTS on Windows 2003

     The following error is returned when running CDONTS.NewMail on Windows 2003 (IIS 6)Invalid class string ‘ or ActiveX component can’t create object: ‘CDONTS.NewMail’ ‘ or The "SendUsing" configuration value is invalid. Cause The problem is due to Microsoft’s change in the name and progID when the DLL is used to send mail through CDO.  Resolution Use the […]