0

i am using dnn6.1 and i have a skin and i created modules in that skin.My problem is i am not getting textbox values with in that skin.

there is a cde in that skin like

 <li>
  <form action="http://letmegooglethat4u.com/" method="GET">
  <input type="text" name="q" value="" placeholder="Type then press Enter.." />
  </form>
 </li> 

when i delete this particular code snippet,its working means textbox values are getting in code behind.my question is is there any problem when we use a form tag in DNN?

ThinkingStiff
  • 64,767
  • 30
  • 146
  • 239
ranjenanil
  • 308
  • 2
  • 7
  • 19

1 Answers1

1

You can not embed a form within DNN Module COntent.

You have to either re-write it to do things differently, such as how I handle certain things per this blog post.

Or iFrame a form.

Mitchel Sellers
  • 62,228
  • 14
  • 110
  • 173