I have a web page (one of many). But on this particular web page the following doesn't render.
@using (Html.BeginForm()) {
<h1>bbbbbbbbbbbbbbbbbbbbbbbbbbbb</h1>
}
The only difference between this and other web pages is that I have dynamically created this link to this page with jQuery rather than hardcoding the link on the page. When I check the link it looks like this:
<a href="/adminStats/Edit?PartitionKey=P22&RowKey=01-01-0001">Edit</a>
Is there something about BeginForm that can't see the page address so it doesn't create the form link?
Robert