asp.net – @ Url.Action在控制器中创建空值的参数之间添加“amp;”?
发布时间:2020-11-17 01:30:33 所属栏目:asp.Net 来源:互联网
导读:我试图通过Url.Action发送多个参数. $(#dialog).dialog({ autoOpen: false, width: 850, height: 420, resizable: false, title: Vehicle details, modal: true, open: function (event, ui) { $(t
我试图通过Url.Action发送多个参数. $('#dialog').dialog({ autoOpen: false,width: 850,height: 420,resizable: false,title: 'Vehicle details',modal: true,open: function (event,ui) { $(this).load("@Url.Action("LightStoneRequest",new { registrationNumber = Model.VehicleRegistration,vinNumber = Model.vVinNumber })"); },buttons: { "Close": function () { $(this).dialog("close"); } } }); 在运行时,它看起来如下: $(this).load("/APQuotes/LightStoneRequest?registrationNumber=TE5TGP&vinNumber=VINTEST44889856"); 正如你所看到的,有一个vin号通过,但它在我的控制器中为null. 这是我的模态. public partial class LightStoneRequest { public LightStoneRequest() { this.LightStoneDataFields = new HashSet<LightStoneDataField>(); } public int LightStoneRequestId { get; set; } public string RegistrationNumber { get; set; } public string VinNumber { get; set; } public virtual ICollection<LightStoneDataField> LightStoneDataFields { get; set; } } 如果我删除放大器;它有效,但URL.Action添加了amp;. 解决方法Url.Action不是问题 – 它就是你如何使用它.您正在使用@ – 这用于在(X)HTML页面中内联一段服务器端代码的结果.在(X)HTML页面中,实体必须正确编码,从而使您的&进入& amp;这是完全正确的行为 – 例如,它应该如何在文本或属性中内联(这就是你在例如< a href =“@ ...”>中使用它的原因). 但是,您尝试内联原始值而不是编码值 – 因为您没有尝试发出HTML,而是发出原始文本. Html.Raw就是这么做的: @Html.Raw(Url.Action("Test",new { arg1 = "Hi!",arg2 = "there." })) (编辑:十堰站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- .net – Viewstate隐藏字段如此之大,一切都会崩溃
- asp.net – Javascript日期本地化
- ASP.NET基于Ajax的Enter键提交问题分析
- asp.net fileupload控件上传文件与多文件上传
- asp.net – 如何将下拉列表添加为gridview项
- asp.net – 是否有可能过滤SignalR中的接收器?
- asp.net – 请求URL在IIS 7中无效
- asp.net-mvc – 何时使用asp.net mvc的路由规则vs查询字符串
- asp.net – 按钮属性: – commandName和CommandArguments
- asp.net – 菜单控件生成的js导致Web窗体中的Sys未定义的异
推荐文章
站长推荐
- 如何配置asp.net进程在域帐户下运行?
- asp-classic – 从Classic ASP执行存储过程
- asp.net-mvc – 只发布控制器
- asp.net 删除项目文件/文件夹IIS重启,Session丢
- asp.net-mvc – 在MVC ActionLink中使用Knockout
- asp.net-mvc – 如何从剃刀视图访问My.Resources
- asp.net-web-api – WebAPI 2属性路由启用会话状
- asp.net-mvc – Azure git部署 – 第二个程序集中
- 如何处理在MVC视图中应用程序启动和传输和显示错
- asp.net-core – 如何在Visual Studio 2015 RC中
热点阅读