0

I using DotNetNuke and I want to send data in this way:

<form method="post" enctype="text/plain action="Func">

I want to add code of my function to Home.aspx file but I can't find it. Where must I add code of my function in this case?

Never
  • 335
  • 2
  • 7
  • 23

2 Answers2

2

All pages in DotNetNuke are rendered in the "Default.aspx". The "Home.aspx" you are seeing in the url is done through URL rewrites. So your not going to find a Home.aspx page anywhere.

Dave D
  • 691
  • 5
  • 11
0

Adding to that, in ASP.NET webforms, all webpages are already declared with the tag. You can't put two forms tags on the page, or it will break.

Bruce Chapman
  • 1,227
  • 3
  • 12
  • 19