SharePoint 中注释字段允许的最大字符数是多少?

发布于 2024-07-10 22:39:35 字数 350 浏览 5 评论 0原文

文本字段 (SPFieldText) 的限制为255 个字符。 备注字段的限制(如果有) (SPFieldMultiLineText )? MSDN 上的相关文档(上面链接)没有列出这些限制。

A Text field (SPFieldText) has a limit of 255 characters. What, if any, is the limit of the Note field (SPFieldMultiLineText)? The associated documentation on MSDN (linked above) doesn't list these limitations.

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

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

发布评论

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

评论(1

药祭#氼 2024-07-17 22:39:35

好吧,根据文档,注释字段与类型设置为注释的字段相同。 这相当于 SQL Server 中的 nText 字段。 以下是文档中该字段的限制:

可变长度 Unicode 数据
最大长度为 2^30 - 1
(1,073,741,823) 个字符。

以下是链接:

您链接的页面:
spFieldMultilineText
在那一页上写着

SPFieldMultiLineText 类
对应于 Note 数据类型
通过 Type 指定
Field 元素的属性。

点击 Field 元素的链接后,您将转到 Field 元素

输入属性,我们看到这个:

注意允许用户输入多个
文本行。 该字段不是
可排序或可分组。 所有文字都是
定义为直接 ASCII
没有 HTML 标记的字符。
任何看起来像 HTML 标记的内容
或者简单地引用 URL(例如
例如,Server.HTMLEncode)来查看
就像直接的文字一样。 控制为
编辑这种格式很简单
文本区域块。 使用 numlines
属性来指定数量
要显示的行。 对应于
ntext SQL 数据类型并表示为
SPFieldMultiLineText 类。”

特别感兴趣的是“...对应于 ntext SQL 数据类型...”

快速谷歌搜索“ntext SQL 数据类型”可将您带到nText

Well, according to the documentation, the notes field is the same as a field with the type set to note. That is equivalent to the nText field in SQL Server. Here is the limit for that field from the docs:

Variable-length Unicode data with a
maximum length of 2^30 - 1
(1,073,741,823) characters.

Here are the links:

The page that you linked:
spFieldMultilineText
On that page it states

The SPFieldMultiLineText class
corresponds to the Note data type that
is specified through the Type
attribute of the Field element.

Following the link to the Field element takes you to Field Element

Looking at the Type property, we see this:

Note Allows users to enter multiple
lines of text. This field is not
sortable or groupable. All text is
defined to be straight ASCII
characters without HTML markup.
Anything that looks like HTML markup
or a URL is simply quoted (for
example, Server.HTMLEncode) to look
like straight text. The control for
editing this format is a simple
TEXTAREA block. Use the NumLines
attribute to specify the number of
lines to display. Corresponds to the
ntext SQL data type and represented by
the SPFieldMultiLineText class."

Specifically of interest is "...Corresponds to the ntext SQL data type..."

A quick google for "ntext SQL data type" takes you to nText

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