Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 如何让剃刀不被阅读@_Html_Razor - Fatal编程技术网

Html 如何让剃刀不被阅读@

Html 如何让剃刀不被阅读@,html,razor,Html,Razor,如何使razor不在输入模式中读取@ <input type="email" class="form-control" id="email" name="Email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{1,}$" title="Email must be in correct fomat" value="" placeholder="Email" required /> 使用双at将起作用:@ 或者,您也可以使用这个:@Htm

如何使razor不在输入模式中读取@

<input type="email" class="form-control" id="email" name="Email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{1,}$" title="Email must be in correct fomat" value="" placeholder="Email"   required />

使用双at将起作用:
@


或者,您也可以使用这个:
@Html.Raw(“@”)
使用双at将起作用:
@


或者您可以使用此选项:
@Html.Raw(“@”)

我的答案有帮助吗?我的答案有帮助吗?