我在剃刀视图中有如下代码
<a href="@Url.Action("Details", "Mycontr", new {id =16}, Request.Url.Scheme)">
当我双击这个项目时,它被重定向到下面的 Url
http://localhost:49280/Mycontr/Section/@Url.Action(
但是,虽然预期是
http://localhost:49280/Mycontr/Details/16
下面是RouteConfig
routes.MapRoute(
name: "Capsule",
url: "Mycontr/Details/{id}",
defaults: new { controller = "Mycontr", action = "Details", id = UrlParameter.Optional }
);
routes.MapRoute(
name: "Section",
url: "Mycontr/Section/{id}",
defaults: new { controller = "Mycontr", action = "Section", id = UrlParameter.Optional }
);
请建议。
我缩小了问题的范围。Html.Raw 导致问题。我有这样的代码
@Html.Raw(HttpUtility.HtmlDecode(Model.sContent))
该变量包含生成的具有 Ur.Action 的 html。如果我只是将 html 生成的代码直接放在没有 Html.Raw 的 razor 视图中,它工作正常。但是,如果我取出 Html.Raw 运行时生成的 html 脚本,显示如下
<style type='text/css'></style><center><div style="width:460px;"><div style="width: 460px; float: left;"><div s...
有没有一种方法可以在不使用 Html.Raw 编码的情况下在变量中显示 html 脚本?通过使用 HtmlString 代替字符串变量来保存生成的 Html 脚本,解决了一半的问题,但 HtmlString 无法解码字符串中的 @Url.Action 语法。
下面是我一直在努力让它工作的最新代码。请帮忙。
string templFile = string.Format("{0}\\DivTemplate.htm", path);
HtmlDocument divDoc = new HtmlDocument();
StreamReader sRdr = new StreamReader(templFile, Encoding.UTF8);
divDoc.Load(sRdr);
XmlNodeList divs = regions.ChildNodes;
IEnumerator enmrDivs = divs.GetEnumerator();
while (enmrDivs.MoveNext())
{
XmlNode node = (XmlNode)enmrDivs.Current;
string divId = node["DivId"].InnerText;
string capId = node["CapsuleId"].InnerText;
HtmlString sUrlAct = new HtmlString("@Url.Action(\"Capsule\", \"Publication\", new { id=\""+capId+"\" }))");
//string sUrlAct = "@Url.Action(\"Capsule\", \"Publication\", new { id=\""+capId+"\"})";
string divFile = string.Format("{0}\\{1}.htm", path, divId);
HtmlDocument divRgnDoc = new HtmlDocument();
StreamReader sR = new StreamReader(divFile, Encoding.UTF8);
divRgnDoc.Load(sR);
foreach (HtmlNode link in divRgnDoc.DocumentNode.SelectNodes("//a[@href]"))
{
link.Attributes.RemoveAll();
link.Attributes.Add("href", sUrlAct.ToString());
}
HtmlNode divNode = divDoc.GetElementbyId(divId);
divNode.AppendChild(divRgnDoc.DocumentNode.FirstChild.CloneNode(true));
sR.Close();
}
sContent = new HtmlString (divDoc.DocumentNode.InnerHtml);
sRdr.Close();