问题标签 [url-action]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
asp.net-mvc-4 - How to use Url.Action in iframe src
How to use the Url.Action
method in the iframe
src
attribute. Like
But its not working properly. Its saying that the requested content is not available.
Please help me
asp.net-mvc - catching base url when using catchall maproute of asp .net mvc
If I use a maproute like
The resulting url of Url.Action("","")
is like www.mysite.com/
which is base url of my site. but when I use the one with asterisk like
The resulting url of Url.Action("","")
is like www.mysite.com/Home/Index/
, but in second case I want to obtain www.mysite.com/
which is my base url. What should I do for that?
asp.net-mvc-3 - 实体框架中MVC3中按钮单击事件的注销功能
我正在使用带有剃须刀的 mvc3 我有一个用于注销用户的按钮,我使用以下代码 shared/_layout.cshtml
这会将我引导至错误页面
谁能告诉我哪里出错了?请帮助按钮单击事件以进行注销更改。
更新:
asp.net-mvc - Url.Action 如何从模型中添加参数值
在控制器中,我有操作“GetPhoto”:
另外,我有 Razor 代码,我试图从模型中动态添加 ID 参数:
但是,不可能写出“id = model.KodFazeBiljkeId”,因为模型在当前上下文中不存在。
有什么解决办法吗?谢谢!
asp.net-mvc-3 - 如何从 url 动作中获取参数
我有这个方法:
和我的观点:
但是,我不知道为什么 Edit() 中的 Id 变量为空????
asp.net-mvc - MVC Url.Action 在不同页面中的行为不同
我看到了 asp .net "Url.Action" 的一个有趣的行为。
<a href="@Url.Action("Index", "Soru")" >@baslik</a>
客户端浏览器中出现的链接为<a href="/Soru/Index">denemebaslik</a>
,然后用户单击此链接并转到目标页面。
在此目标页面<a href="@Url.Action("Index", "Soru")" >@baslik</a>
中,客户端浏览器中的链接如下所示<a href="/Soru/Index/29271654-e19a-4096-8795-3283d8a208ed">denemebaslik</a>
@Url.Action
在不同的页面表现不同。我的路线配置就像
为什么这个行为会这样?
c# - 如何调试 JqGrid 调用的 c# 代码?
我有一些这样的代码:
据我了解, url: URL.Action("FunctionName") 将调用我项目中某处存在的名为“FunctionName”的函数。我想做的就是在函数运行时查看函数中的变量,但是在 VS 中放置断点不起作用。那么我将如何执行doonspect,但调试器只显示正在执行的脚本的代码,而不是那个?我已经尝试通过在我想要在 c# 代码中的代码之前设置断点来使用 Chrome 进行调试。
asp.net-mvc - Url.Action, Where does the parameter come from
I have this javascript code in the view:
and this is the routing config:
What I'm expecting from Url.Action("Product", "Product") is to return /en/Product/Product/
but what I got is /en/Product/Product/92
and 92 is the id of the current product and I'm trying to create the url for the next product. I could find a workaround thanks to this answer's replace trick, but now I just want to know why this is happening.
asp.net-mvc - 在 Html.BeginForm MVC 之外提交表单
我希望能够在 Html.BeginForm 之外提交一个表单,这就是我所拥有的并且正在表单内工作..
我环顾四周,找到了一个解决方案:给你的 Html.BeginForm 起一个这样的名字:
然后使用这个:
但是是否可以在 Url.Action 中使用相同的东西而不是 onclick,因为我需要控制器中的功能?
干杯
asp.net - ASP.NET MVC 布局中的 URL
我有以下问题。我创建了一个布局和两个使用它的视图。每个视图使用不同的控制器。部分布局是带有站点名称的导航。我想要做的是使站点名称链接始终指向主页/索引操作。当我在主控制器视图上单击站点名称时它可以工作,但是当我使用不同的控制器转到其他站点时它会引发错误。
说明:HTTP 404。您要查找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请查看以下 URL 并确保其拼写正确。
我使用默认路由设置。
请求的网址:/index.html
下面是部分模板代码。
@使用 System.Web.Script.Services
预先感谢您的任何帮助。
编辑:我包括完整的布局。