GBS Enterpirse Roofing
"Roofing done right."
GBS roofing is A+ rated with the BBB
homeproductsinstallationcontact usrequest a quoteTestimonialscall us now
img

Request a Quote

 
 

Free Quote

 
<% Dim hideForm Dim strBody 'see if we completed the form If Request("sendIT") = "YES" Then strBody = "
" & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ "
First Name:" & Server.HtmlEncode(Request("Contact_FirstName")) & "
Last Name:" & Server.HtmlEncode(Request("Contact_LastName")) & "
Street Address:" & Server.HtmlEncode(Request("Street_Address")) & "
City:" & Server.HtmlEncode(Request("Contact_City")) & "
State/Province:" & Server.HtmlEncode(Request("Contact_State")) & "
Zip/Postal Code:" & Server.HtmlEncode(Request("Contact_ZipCode")) & "
Phone:" & Server.HtmlEncode(Request("contact_phone")) & "
Work or Cell:" & Server.HtmlEncode(Request("contact_phone2")) & "
E-mail:" & Server.HtmlEncode(Request("contact_email")) & "
" & _ " I would like a FREE ESTIMATE or to speak with a representative about the following:" & _ "
" & _ " (check all that apply)" & _ "
" & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ " " & _ "
" & _ " " & SetCheckedEmail("chkReRoof", "Re-Roof ") & _ " " & _ " " & SetCheckedEmail("chkNewRoof", "New Roof") & _ " " & _ " " & SetCheckedEmail("chkGutters", "Gutters") & _ " " & _ " " & SetCheckedEmail("chkRepair", "Repair") & _ "
" & _ " " & SetCheckedEmail("chkHailDamage", "Hail Damage") & _ " " & _ " " & SetCheckedEmail("chkWindDamage", "Wind Damage") & _ " " & _ " " & SetCheckedEmail("chkOther", "Other") & _ " " & _ "  " & _ "
" & _ "
Please briefly explain what you would like a quote or estimate on:
" & Server.HtmlEncode(Request("Comments_Questions")) & "
" & _ "
" Dim success success = true success = SendEmail(strBody, "GBS Roofing Request a Quote Form", "info@gbsroofing.com", "info@gbsroofing.com") If success <> true then Response.Write("

There was an error in submitting your information to our offices.

") Else Response.Write("

Thank you for contacting us. As soon as we receive your information, we will contact you within 24-48 hours to answer any questions you might have or set up an appointment.

") Response.Write(strBody) hideForm = true End if End If If hideForm = True Then Else %>
" method="post" name="QuoteForm" id="QuoteForm">
First Name: " size="35" />
Last Name: " size="35" />
Street Address: " size="35" />
City: " size="20" />
State/Province:
Zip/Postal Code: " size="12" maxlength="12" />
Hm. Phone: " size="20" />
Work or Cell: " size="20" />
E-mail: " size="35" />
   
I would like a FREE ESTIMATE or to speak with a representative about the following: (check all that apply)

value="Re-Roof"/>Re-Roof value="New Roof"/>New Roof value="Gutters"/>Gutters value="Repair"/>Repair
value="Hail Damage"/>Hail Damage value="Wind Damage"/>Wind Damage value="Other"/>Other  
   
Further details about your request:
 
     
<% End If Function SetChecked(checkName) Dim isChecked isChecked = " " If Request(checkName) <> "" Then isChecked = " checked" End If SetChecked = isChecked End Function Function SetCheckedEmail(checkName, checkedText) Dim isChecked isChecked = " " If Request(checkName) <> "" Then isChecked = " x " & checkedText & "" End If SetCheckedEmail = isChecked End Function Function SendEmail(strBody, subject, toEmail, fromEmail) Dim objMail Dim success Dim sender sender = "" success = true On Error Resume Next Set objMail = Server.CreateObject("CDONTS.NewMail") objMail.To = toEmail objMail.From = fromEmail objMail.Subject = subject objMail.Body = strBody objMail.MailFormat = 0 objMail.BodyFormat = 0 objMail.Send If Err.number <> 0 Then success = false end if If success = false then 'try using another object Dim objCDOMessage 'Initialize local variables err.Clear Set objCDOMessage = CreateObject("CDO.Message") 'Create and prepare CDO configuration object Set objCDOConfig = CreateObject("CDO.Configuration") objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing")= 2 objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="relay-hosting.secureserver.net" ' or internal ip objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") =25 objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Use SSL for the connection (True or False) objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 ' If your server requires outgoing authentication uncomment the lines bleow and use a valid email address and password. objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") ="" objCDOMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="" objCDOMessage.Configuration.Fields.Update objCDOMessage.From = fromEmail objCDOMessage.To = toEmail If sender <> "" Then objCDOMessage.Sender = sender End If 'objCDOMessage.CC = strCC objCDOMessage.Subject = subject 'objCDOMessage.MDNRequested = true 'objCDOMessage.DSNOptions = 4 'successfull delivery 'If strType = "text" Then ' objCDOMessage.TextBody = strBody 'ElseIf strType = "html" Then objCDOMessage.HTMLBody = strBody 'End If 'Send message objCDOMessage.Send 'Release objects and clean up Set objCDOMessage = Nothing Set objCDOConfig = Nothing If err.number = 0 Then success = True Else Response.Write(err.Description) success = False End If end if SendEmail = success End Function %>
House with a tile roof
 
 
Installed aluminum gutter
 
 
Custom installed skylights
img
 
Browse
 
 
img
 
 
img
 
Featured Links
 
 
img
 
 
 
 
 
 
 
 
footer line
 
© 2010 GBS Enterprises, Inc. All rights reserved. Site design by MindFlint Media
Connect with GBS Roofing on FacebookFollow GBS Roofing on TwitterWatch GBS Roofing Videos on YouTube