<%@LANGUAGE="VBSCRIPT"%> <% IF SESSION("MM_Username") <> "" then if request.QueryString("page") = "terms" then response.Redirect("appform1.asp?pg=1") else response.Redirect("appform1.asp?pg=1&msg=reg") end if end if %> <% Dim strPasswd Dim intPassLength Function rndPasswd(intPassLength) Dim araChars(33) 'Create the array and add the content below araChars(0) = "A" araChars(1) = "B" araChars(2) = "C" araChars(3) = "D" araChars(4) = "E" araChars(5) = "F" araChars(6) = "G" araChars(7) = "H" araChars(8) = "J" araChars(9) = "K" araChars(10) = "L" araChars(11) = "M" araChars(12) = "N" araChars(13) = "P" araChars(14) = "Q" araChars(15) = "R" araChars(16) = "S" araChars(17) = "T" araChars(18) = "U" araChars(19) = "V" araChars(20) = "W" araChars(21) = "X" araChars(22) = "Y" araChars(23) = "Z" araChars(26) = "2" araChars(28) = "3" araChars(29) = "4" araChars(30) = "5" araChars(31) = "6" araChars(32) = "8" araChars(33) = "9" strPassword = "" Randomize Do Until Len(strPassword) = intPassLength strPassword = strPassword & araChars(int(rnd()*33)) Loop rndPasswd = strPassword Response.write(rndPasswd) End Function %> <% ' *** Edit Operations: declare variables Dim MM_editAction Dim MM_abortEdit Dim MM_editQuery Dim MM_editCmd Dim MM_editConnection Dim MM_editTable Dim MM_editRedirectUrl Dim MM_editColumn Dim MM_recordId Dim MM_fieldsStr Dim MM_columnsStr Dim MM_fields Dim MM_columns Dim MM_typeArray Dim MM_formVal Dim MM_delim Dim MM_altVal Dim MM_emptyVal Dim MM_i MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME")) If (Request.QueryString <> "") Then MM_editAction = MM_editAction & "?" & Request.QueryString End If ' boolean to abort record edit MM_abortEdit = false ' query string to execute MM_editQuery = "" %> <% ' *** Insert Record: set variables If (CStr(Request("MM_insert")) = "form1") Then MM_editConnection = MM_cpb_STRING MM_editTable = "Business" MM_editRedirectUrl = "thank_you.asp?email=" & request.form("BEmail") MM_fieldsStr = "BContactTitle|value|BAddress1|value|BContactName|value|BAddress2|value|BContactSName|value|BCounty|value|BJobTitle|value|BPostCode|value|BEmail|value|BBusinessType|value|Btele|value|BDateStarted|value|BName|value|BNumberEmployees|value|Class1|value|Bpassword|value|class2|value|dateadded|value" MM_columnsStr = "BContactTitle|',none,''|BAddress1|',none,''|BContactName|',none,''|BAddress2|',none,''|BContactSName|',none,''|BCounty|',none,''|BJobTitle|',none,''|BPostCode|',none,''|BEmail|',none,''|BBusinessType|',none,''|Btele|',none,''|BDateStarted|',none,''|BName|',none,''|BNumberEmployees|',none,''|Class1|',none,''|Bpassword|',none,''|Class2|',none,''|dateadded|',none,NULL" ' create the MM_fields and MM_columns arrays MM_fields = Split(MM_fieldsStr, "|") MM_columns = Split(MM_columnsStr, "|") ' set the form values For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2 MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i))) Next ' append the query string to the redirect URL If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString Else MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString End If End If End If %> <% ' *** Insert Record: construct a sql insert statement and execute it Dim MM_tableValues Dim MM_dbValues If (CStr(Request("MM_insert")) <> "") Then ' create the sql insert statement MM_tableValues = "" MM_dbValues = "" For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2 MM_formVal = MM_fields(MM_i+1) MM_typeArray = Split(MM_columns(MM_i+1),",") MM_delim = MM_typeArray(0) If (MM_delim = "none") Then MM_delim = "" MM_altVal = MM_typeArray(1) If (MM_altVal = "none") Then MM_altVal = "" MM_emptyVal = MM_typeArray(2) If (MM_emptyVal = "none") Then MM_emptyVal = "" If (MM_formVal = "") Then MM_formVal = MM_emptyVal Else If (MM_altVal <> "") Then MM_formVal = MM_altVal ElseIf (MM_delim = "'") Then ' escape quotes MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'" Else MM_formVal = MM_delim + MM_formVal + MM_delim End If End If If (MM_i <> LBound(MM_fields)) Then MM_tableValues = MM_tableValues & "," MM_dbValues = MM_dbValues & "," End If MM_tableValues = MM_tableValues & MM_columns(MM_i) MM_dbValues = MM_dbValues & MM_formVal Next MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")" If (Not MM_abortEdit) Then ' execute the insert on error resume next Set MM_editCmd = Server.CreateObject("ADODB.Command") MM_editCmd.ActiveConnection = MM_editConnection MM_editCmd.CommandText = MM_editQuery MM_editCmd.Execute MM_editCmd.ActiveConnection.Close 'response.write(err.number) 'response.end if err.number = -2147217900 then response.Redirect("error.asp?pg=9&msg=That email is already registered, please try using another email address.") end if if err.description <> "" then response.Redirect("error.asp?pg=9&msg=" & err.description) end if If (MM_editRedirectUrl <> "") Then 'set the session variables Session("MM_Username") = request.form("BEmail") Response.Redirect(MM_editRedirectUrl) End If End If End If %> <% 'get this page dim thispage thispage=0 thispage = request.QueryString("pg") %> Pure Business - Innovative Healthcare Thinkers
Innovative Healthcare Thinkers - Home
Innovative Healthcare Thinkers - Make An Application
<%if thispage<>0 then %>Register Interest<%else%>Register Interest<%end if%>
<%if thispage<>1 then %>Application Form Page 1<%else%>Application Form Page 1<%end if%>
<%if thispage<>2 then %>Application Form Page 2<%else%>Application Form Page 2<%end if%>
<%if thispage<>3 then %>Application Form Page 3<%else%>Application Form Page 3<%end if%>
Innovative Healthcare Thinkers - Terms & Conditions
 
 
 
 
 
 
 

<%if request.QueryString("accessdenied") <> "" then%> you must register your interest before filling the form out <%end if%> 

Places to attend the master classes are limited and will be allocated on a first come first serve basis. Please register your preference as soon as possible.

You must have submitted an entry to the competition by 28.08.04 to be eligible to attend the master class.

 
Title 
 
Address 
Name 
 
Surname 
 
County 
Job Title 
 
Post Code 
Email 
 
Type of Business 
Telephone 
 
Date Business Started 
Business Name 
 
No. of Employees 
         

All competition applicants are invited to attend a Master Class to be held on 11 September 2004, at the Royal Cornwall Hospital, Truro, featuring key business advisor and mentor presentations to assist participants on business start-up issues.

Topics available include Marketing To The Healthcare Market and the NHS; General Marketing Principles; Financial Packaging; Intellectual Property; and Company and Corporate Law.

 

First Choice
Second Choice
 

Candidates should specify their first and second choice of classes and will be informed of their allocation time.