Skip to content

Instantly share code, notes, and snippets.

@tucaz
Created February 26, 2010 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tucaz/316245 to your computer and use it in GitHub Desktop.
Save tucaz/316245 to your computer and use it in GitHub Desktop.
var header = new H3("line", "HON Customer Information")
.Add(new Br());
var div = new Div("indent")
.Add(new CheckBox("checkbox hascc", "chkHasCC"))
.Add(new P("", "Please select this box if your company has a HON assigned customer code.")
.Add(new Span("", " If you need assistance, please ")
.Add(new A("externalLink", "Contact Us", "HREF_MISSING", "_blank"))
)
)
.Add(new Br())
.Add(new Div("", "customerInformation").Style("display: none;")
.Add(new Div("line", "divExistingLogins")
.Add(new Label("", "If you have an existing login ID(s) to honbusiness.com today and use e-Ordering, Specification Services, Web Quoting and/or Smart Quote, please provide your login ID(s) below:"))
.Add(new TextBox("", "txtOldLogin", "", 255))
.Add(new Small("", "To enter multiple Login IDs separate them with commas. For example: 987654_Angie, 456789_Angie"))
.Add(new Br())
)
.Add(new Label("", "Please enter the six digit HON Customer Code for your location (i.e. 987654):"))
.Add(new TextBox("toValidate cc", "txtCC", "HON Customer Number", 6))
);
var headerAdditionalInformation = new H3("additionalInformationHeader", "Additional Information")
.Add(new Br());
var divAdditionalInfo = new Div("indent")
.Add(new Div("line customerOnly").Style("display: none")
.Add(new P("", "Please select the role that best describes your activities*:"))
.Add(new Br())
.Add(new Div("lineBlock", "divCustomerRoles")
.Add(null)
)
)
.Add(new Div("line notCustomerOnly")
.Add(new P("", "Thank you for your interest in The HON Company. To better serve you, please select your relationship with The HON Company."))
.Add(new Br())
.Add(null)//UL
.Add(null)//LI
)
.Add(new Div("line", "divHonCompanyBuyingGroup")
.Add(new Br())
.Add(new P("", "Is your company a member of a HON Buying Group?"))
.Add(new Br())
.Add(new Div("lineBlock", "divHONBuyingGroup")
.Add(null)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment