ASP.NET C#:如何在 web.config 中调用 App_code 函数
这是我在 web.config 中使用的代码:
<add name="MainRule" virtualUrl="^~/Pages/([\w-_]+).html"
rewriteUrlParameter="ExcludeFromClientQueryString"
destinationUrl="~/page.aspx?pid=${PageTitleToId.ConvertPageTitleToPageId($1)}"
ignoreCase="true" />
在 App_Code 文件夹中,我有一个“PageTitleToId.cs”类,其中包含带有字符串参数的 ConvertPageTitleToPageId 函数。
我是否缺少某些内容,因为运行页面时未调用 ConvertPageTitleToPageId 函数。
任何帮助表示感谢,
Simplecode
This is the code I use in the web.config:
<add name="MainRule" virtualUrl="^~/Pages/([\w-_]+).html"
rewriteUrlParameter="ExcludeFromClientQueryString"
destinationUrl="~/page.aspx?pid=${PageTitleToId.ConvertPageTitleToPageId($1)}"
ignoreCase="true" />
In the App_Code folder I have a "PageTitleToId.cs" class which contains the ConvertPageTitleToPageId function which takes a string parameter.
Am I missing something because the ConvertPageTitleToPageId function is not called when I run the page.
Any help is appreciated,
Simplecode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法执行 web.config 中的代码。我将更新
page.aspx
以处理title
查询字符串参数,在该参数上调用ConvertPageTitleToPageId()
来获取您的pid.
You can't execute code in your web.config. I would update
page.aspx
to handle atitle
query string parameter on which it callsConvertPageTitleToPageId()
to get yourpid
.