Sharepoint 在安全设置上,默认禁用了在sharepoint页面中运行C#或vb.net的代码
那什么样才能算是sharepoint页面呢,打开designer ,新建一个aspx页面,在页面中写一些简单的html。
然后用浏览器打开,会正常浏览不会报错。
但如果你在页面中写入C#代码,就会报错
如果想在sharepoint页面中运行C#代码,需要在web.config中添加一个节点
Configuration –> Sharepoint –> SafeMode –> PageParserPaths 在这个里面添加一个
<PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
1. VirtualPath 是希望在什么位置启用代码块,路径可写成 “/customer.aspx” 这是网站的路径,
2. 当写了完整的页面名称时,IncludeSubFolders 属性可以不用写。
3. 除了 Compilation 这个属性外 其他的都很好理解
Compilation中 有3个属性
Always Auto Never 这个表示页面中的代码 是不是要被编译。
然后重新启动IIS,就会生效了。
在页面写C#
<script runat="server"> protected void Page_Load(object sender, EventArgs e) { Response.Write("Hello SharePoint"); } </:script>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索c#
, 页面
, 代码
, vb2010
, sharepoint
, 属性
, C# sharepoint
一个
sharepoint 2010、sharepoint 2010 下载、sharepoint 2010教程、sharepoint2010破解版、sharepoint2010安装,以便于您获取更多的相关知识。