Hi,
Anybody have simple sample code on how to submit a form using
blueprint (get or post). I created one that did go to another page
when i press submit but no matter what input i place on the textbox,
the submitted variables did not change. I'm stuck on this.
Thanks for the help
The code I used is below:
it supposed to submit values from the two textbox to formsubmit.aspx
But no matter what I type on the two textboxes the values are always
the default (in models)
Justin
<models>
−
<model id="personal_info">
−
<instance>
−
<data>
<name>justin</name>
<address>ubi ave 1</address>
</data>
</instance>
<submission method="get" resource="formsubmit.aspx"/>
</model>
</models>
−
<content>
−
<module>
−
<header layout="simple">
−
<layout-items>
<block>module 1</block>
</layout-items>
</header>
−
<input model="personal_info" ref="name">
<label>Name:</label>
</input>
−
<input model="personal_info" ref="address">
<label>Address:</label>
</input>
−
<submit>
<label>submit button</label>
</submit>
</module>
</content>