
September 10th, 2013, 01:32 AM
|
Registered User
|
|
Join Date: Sep 2013
Posts: 1
Time spent in forums: 3 m 53 sec
Reputation Power: 0
|
|
Inject form content into div in a static HTMLtemplate and render.
Below is my example.
This is the template stored in a physical location.
<html>
<head>
//logo and some content
</head>
<Body>
<div id ="MainContent">
</div>
<div id ="MyContent">
</div>
<div id ="Footer">
</Body>
<html>
I have to render this template with some form content inside MyContent (This will be another form with submit button and controls). Also i need to have server control over this form.
<div id ="MyContent">
</div>
This is want exactly i am looking for.
|