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.
ブラウザに送信されるすべてのコードを記述して、完全に制御できるようにします。
このために、aps.netmvcで提供されるjavascript検証を完全に無効にする必要があります。
どうすればこれを達成できますか?
あなたの質問を完全に理解できるかどうかはわかりませんが、web.configの「ClientValidationEnabled」と「UnobtrusiveJavaScriptEnabled」の値をfalseに変更してみてください。
<add key="ClientValidationEnabled" value="false" /> <add key="UnobtrusiveJavaScriptEnabled" value="false" />
お役に立てれば!