WSS 3.0 计算列的自定义函数

发布于 2024-09-12 20:43:39 字数 232 浏览 12 评论 0原文

有什么方法可以向 WSS 3.0 添加可在计算字段中使用的自定义函数吗?

例如,我想添加一个对字符串进行 URL 编码的函数,以便用户可以根据其他字段使用 URL 创建列,如下所示:

"http://www.test.com?fname="&URLENCODE([FirstName])&"&lname="&URLENCODE([LastName])

Is there any way I can add a custom function to WSS 3.0 that can be used in calculated fields?

For example, I want to add a function that URL Encodes strings, so that the users can create columns with the URLs based on the other fields something like this:

"http://www.test.com?fname="&URLENCODE([FirstName])&"&lname="&URLENCODE([LastName])

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

末が日狂欢 2024-09-19 20:43:39

不可以,您只能对计算字段使用预定义函数。 (请参阅函数列表 此处

您可以做一些事情,具体取决于您愿意为此付出多少努力。

首先,您可以使用脚本来对 URL 的部分内容进行编码。这是

第二个选项是通过捕获使用您正在创建的列的列表的 SPItemEventReceiver 函数来自行填充该列。
您必须捕获 ItemAdded 事件然后在服务器端代码中对 URL 进行编码。请在此处查看其他活动。

所以,是的,虽然并不那么容易,但还是有可能的。

No, you can only use the pre-defined functions for calculated fields. (See a list of functions here)

There a some things you can do, depending on how much work you are willing to put on this.

First, you could a script to encode parts of your URL. Here is a thorough example. It is not very generic, but it will work very well for a column.

Second option is to fill the column yourself by catching the SPItemEventReceiver functions for the lists where the column you are creating is used.
You would have to catch the ItemAdded event and then encode the URL in server-side code. See other events here.

So yeah, not as easy as it could be, but possible.

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