HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership/special-offers.asp
<HTML>
<HEAD>
<TITLE>Web Site Design in Warwickshire, UK</TITLE>
<meta name="description" content="Web Site Designers, Internet Services & Bespoke Software in Leamington Spa, UK. Providing services in Warwickshire, Coventry, Birmingham & all over the UK.">
<meta name="keywords" content="web site, designers, design, uk, promotion, hosting, services, web Programming, internet services, bespoke software, ecommerce, Leamington Spa, Warwickshire, Coventry, Birmingham,IT Partnership, ASP, active server pages, networking ">

<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4134.100" name=GENERATOR>
<link rel="stylesheet" href="itp.css">
<!--#include file="inc-head.asp"-->
</HEAD>
<BODY text=#004080 vLink=#004080 aLink=#FF6600 link=#004080
leftMargin=0 topMargin=0 marginheight="0" marginwidth="0" bgColor=#FFFFFF background="images/bkd.gif">

<table width="696" border="0" cellspacing="0" cellpadding="0" height="100%">
  <tr valign="top">
    <td height="%">
      <table width="668" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
        <tr>
          <td width="103"><!-- #BeginLibraryItem "/Library/itp-web-site-designers.lbi" --><a href="index.asp"><img src="images/itp-logo-small3.gif" width="150" height="70" border="0"></a><!-- #EndLibraryItem --></td>
          <td width="565" align="right" class="write"><font color="#FF6600"><br>
            <br>
            </font><font color="#FF6600">IT Partnership.com</font><br>
            <font color="#004080">Website design Warwickshire
            - Coventry - Birmingham, UK</font></td>
        </tr>
      </table>
      <table width="701" border="0" cellspacing="0" cellpadding="0">
        <tr bgcolor="#FFFFFF">
          <td><!-- #BeginLibraryItem "/Library/menu-w.lbi" --><table width="701" height="24" border="0" cellpadding="0" cellspacing="1">
  <tr> 
    <td width="50" align="center" bgcolor="#004080" class="top"><a href="index.asp" class="top"><font color="#FFFFFF">Home</font></a></td>
    <td width="105" align="center" bgcolor="#6A9BC4" class="top"><a href="web-site-design.htm" class="top"><font color="#FFFFFF">Web 
      Site Design</font></a></td>
    <td width="120" align="center" bgcolor="#004080"><a href="bespoke-software.htm" class="top"><font color="#FFFFFF">Bespoke 
      Software</font></a></td>
    <td width="99" align="center" bgcolor="#004080"><a href="specialise.htm" class="top"><font color="#FFFFFF">Specialising 
      In</font></a></td>
    <td width="91" align="center" bgcolor="#004080"><a href="testimonials.htm" class="top"><font color="#FFFFFF">Testimonials</font></a></td>
    <td width="62" align="center" bgcolor="#004080"><a href="contact.asp" class="top"><font color="#FFFFFF">Contact</font></a></td>
    <td background="images/blue-grd2.jpg" width="156">&nbsp;</td>
  </tr>
</table>
<!-- #EndLibraryItem --></td>
        </tr>
      </table>
      <table width="701" border="0" cellspacing="0" cellpadding="0" height="24">
        <tr valign="top">
          <td width="8" bgcolor="#D9ECFF" rowspan="2"> <br>
            <img src="images/shim.gif" width="8" height="8"> </td>
          <td rowspan="2" width="155">
            <p class="menu"><img src="images/shim.gif" width="154" height="1"><b><br>
              </b><span class="menu"> </span></p>
          </td>
          <td colspan="2" width="561" rowspan="2" class="menu">
            <table width="538" border="0" cellspacing="0" cellpadding="0">
              <tr valign="top">
                <td colspan="4" height="59"> <img src="images/special-offers.jpg" width="309" height="58"><br>
                <img src="images/line.gif" width="510" height="1"></td>
              </tr>
              <tr>
                <td rowspan="2" width="9"><img src="images/shim.gif" width="9" height="1"></td>
                <td width="75" rowspan="2" class="menu" valign="top" align="center">&nbsp;
                </td>
                <td width="405" rowspan="2" valign="top">
                
<%
' (SS,8/7/14) moved here from above
Dim NL
NL = Chr(13) + Chr(10) + Chr(13) + Chr(10) 	' *** may be a better way?
' (SS,8/7/14) added following check to stop spam that was being sent with http:// in City field, checks for this in 4 fields
If InStr(1, Request("City") & Request("Tel") & Request("Name") & Request("Email"), "http://", 1) = 0 Then
  ' send the email using Dundas Mailer Control
  Dim objEmail 'Mailer control
  Set objEmail = Server.CreateObject("Dundas.Mailer")

  objEmail.SMTPRelayServers.Add "mail.itpartnership.com"

  'set Mailer control properties and collection items
  objEmail.TOs.Add "purchases@itpartnership.com" 
  ' (SS,8/7/14) removed following BCC
  ' objEmail.BCCs.Add "jeets@itpartnership.com"
  objEmail.FromAddress = "Webform-Special-Offers@itpartnership.com"
  objEmail.Subject = "Web Site Special Offers"
  objEmail.Body = "Name               : " + Request.Form("Name") & NL &_
      "Email              : " + Request.Form("Email") & NL &_
      "City               : " + Request.Form("City") & NL &_
      "Tel                : " + Request.Form("Tel") & NL &_
      "Additional Info    : " + Request.Form("AdditionalInfo") & NL
  'send email
  objEmail.SendMail
  'you can test for the success/failure of the operation by examining VBScript's Err object here
  Set objEmail = Nothing
  %>
                    <p><br>
                    <span class="write"><span class="write"><b>Thank you for your
                    enquiry </b></span><b><span class="write"></span></b></span>
                  </p>
                  <p>Your details &amp; enquiry have been sent.</p>
                  <p>We will get back to you shortly to discuss your Web Site
                    requirements.</p>
                  <p class="small">&nbsp;</p>
  <%
Else
  Response.Write("<br><strong>Sorry, SPAM detected</strong><br>")
End If
%>

                </td>
                <td rowspan="2" width="50">&nbsp;</td>
              </tr>
              <tr> </tr>
            </table>
          </td>
        </tr>
        <tr valign="top"> </tr>
      </table>
    </td>
  </tr>
  <tr valign="bottom">
    <td height="15"> <!-- #BeginLibraryItem "/Library/bt-menu.lbi" -->
<table width="700" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td width="8"><img src="Library/images/shim.gif" width="8" height="1"></td>
    <td width="162"> &nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:helpme@itpartnership.com" class="small">helpme@itpartnership.com</a><br> 
    </td>
    <td align="center"> <a href="index.asp" class="menulinks">home</a>&nbsp;&nbsp;&nbsp;&nbsp; 
      &nbsp;&nbsp;&nbsp;<a href="web-site-design.htm" class="menulinks">web 
      site design</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="bespoke-software.htm" class="menulinks">bespoke 
      software</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="menulinks">&nbsp;<a href="specialise.htm" class="menulinks">specialising 
      in</a></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="testimonials.htm" class="menulinks">testimonials</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="contact.htm" class="menulinks">contact</a></td>
  </tr>
</table>
<!-- #EndLibraryItem --><table width="701" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="172"><p>&nbsp;</p>
            <p>&nbsp;</p></td>
          <td width="529" align="center" class="small"><font color="#BACADC">Web
            site design, website designers in Leamington Spa, UK. <br>
            Providing web site design services in Warwickshire, Coventry, Birmingham
            & all over the UK. </font></td>
        </tr>
      </table>
      <div id="Layer1" style="position:absolute; width:165px; height:114px; z-index:2; left: 11px; top: 85px">
        <p><span class="menu"><strong><a href="web-site-design.htm" class="menu"><br>
    Web Site Design </a></strong><br>
&nbsp;&nbsp;&nbsp;<a href="special-offers.htm"><font color="#FF6633">Special
Offers</font></a><strong><a href="web-site-design.htm" class="menu"><br>
    </a></strong><span class="menu">&nbsp;&nbsp;&nbsp;<span class="menu"><a href="shopping-website.htm">Shopping
    Web Site</a></span></span><strong><a href="web-site-design.htm" class="menu"><br>
        </a></strong>&nbsp;&nbsp;&nbsp;<a href="web-site-costs.htm">Standard Web Site
        Packages </a><br>
&nbsp;&nbsp;&nbsp;<span class="menu"><strong><a href="design-portfolio.htm">Design
Portfolio</a></strong> </span><br>
&nbsp;&nbsp;&nbsp;<a href="web-site-benefits.htm">Web Site Benefits </a><br>
&nbsp;&nbsp;&nbsp;<a href="web-design-philosophy.htm">Design Philosophy</a><br>
&nbsp;&nbsp;&nbsp;<a href="creating-web-site.htm">Creating your web site</a><br>
    <strong><a href="web-site-quote.asp">Request a Quote</a></strong><br>
    <b><span class="menu"><a href="web-services.htm">Other Web Services</a></span></b><br>
&nbsp;&nbsp;&nbsp;<a href="web-site-promotion.htm">Web Site Promotion</a><span class="menu"><br>
&nbsp;&nbsp;&nbsp;<a href="web-site-hosting.htm">Web Site Hosting</a><br>
&nbsp;&nbsp;&nbsp;<a href="webstats.htm">Web Site Statistics</a><br>
&nbsp;&nbsp;&nbsp;<a href="programming-web.htm">Programming for the Web</a></span></span></p>
      </div>
      <div id="Layer2" style="position:absolute; left:7px; top:358px; width:166px; height:93px; z-index:2">
        <script language="JavaScript" src="rand-img-web-design.js"></script>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p><br>
        </p>
      </div></td>
  </tr>
</table>

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>

<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-4455167-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</body></HTML>