an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 3/30/2010 5:56:38 PM By lukezy. 3 replies.
3/30/2010 4:59:11 PM
4safety
Posts: 124
Joined: 5/11/2009
Form
I put a form together to capture an email list for now.

When using the form viewer block it doesn't allow you to change width of 
the field.

I tried copying and pasting the code into the template editor to modify 
width but then the form doesn't function or allow the redirect.

any thoughts??


Thanks

3/30/2010 5:09:32 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Form
Could you please post your form template? Could you please share the link to the form page?
DotShoppingCart Staff
3/30/2010 5:21:51 PM
4safety
Posts: 124
Joined: 5/11/2009
Re: Form
It is on the homepage www.4safetystore.com you will see it in the left side bar.
 
Right now the template is generated for me because it was not functioning. To modify the template, I cut and pasted the code of the working form into the template source.  After I modify <input> and add size="" etc., once that is complete the form no longer functions or redirects to the specified page.
 
 
thanks
3/30/2010 5:56:38 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Form
The form template must follow DSC template format which is the token based. Do not put direct input tags. Put the tokens instead. DSC will resolve tokens to the neccessary input tags automatically. Try the below form template.
 
<div><span style="font-weight: bold">Email:</span><span class="emailSignUp">%%Email Signup%%</span></span></div>
<div>%%SubmitButton%%</div>
DotShoppingCart Staff