ASP.NET C#:如何在 web.config 中调用 App_code 函数

发布于 2024-11-24 10:20:34 字数 463 浏览 3 评论 0原文

这是我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

四叶草在未来唯美盛开 2024-12-01 10:20:34

您无法执行 web.config 中的代码。我将更新 page.aspx 以处理 title 查询字符串参数,在该参数上调用 ConvertPageTitleToPageId() 来获取您的 pid.

You can't execute code in your web.config. I would update page.aspx to handle a title query string parameter on which it calls ConvertPageTitleToPageId() to get your pid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文