Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
"BeginForm"最初に「BeginForm」の最初"if(){}"と2番目に「BeginForm」の終わりを入れる必要があります"if(){}"
"BeginForm"
"if(){}"
このような
if (true) { @Html.Raw("<form>"); } .. if (true) { @Html.Raw("</form>"); }
Ajax.BeginForm() を使用してこれを行うにはどうすればよいですか?
次のようなことを試してください:
if (true) { @Html.Raw("<form data-ajax="true" data-ajax-mode="replace">"); } .. if (true) { @Html.Raw("</form>"); }