在 Sharepoint Web 部件中使用自定义 css 作为嵌入式资源不起作用,为什么?

发布于 2024-10-27 13:25:10 字数 1415 浏览 1 评论 0原文

我在这里读到了另一个问题,如何在我的 Sharepoint WebPart 中使用自定义 CSS。所以我点击了这个链接:

http://www .synergyonline.com/blog/blog-moss/Lists/Posts/Post.aspx?ID=42

我把我的CSS作为嵌入式资源。一切正常,我启动页面。

但我的风格却没有出现。

我查看源代码,找到了我的资源:

<script src="/WebResource.axd?d=YuTREer2woiGbjiSaZdP0bLrdm6vpTygUffdwMFJr0zmn76B3vav0QRpmxzvYvKzZRnmgKpNbLHpnJf-W4rfrv-MrIZEoz6tWi5xHXTiN3lcxdP3s7ysDExW-eBQTlH8cUrMRw2&amp;t=634369276247430484" type="text/javascript"></script>

这引导我找到我的 css:

.webPartContainer
{
    background-color:Aqua;
}

.webPartContainer .Text
{
    font-size:xx-large;
}

这里是它引用样式的地方:

<td class="ms-WPBorder" valign="top">
    <div WebPartID="2109154d-6921-46ac-84d4-8ce24a926617" HasPers="false" id="WebPartctl00_m_g_2109154d_6921_46ac_84d4_8ce24a926617" width="100%" class="ms-WPBody" allowDelete="false" allowExport="false" style="" >
        <div id="ctl00_m_g_2109154d_6921_46ac_84d4_8ce24a926617">
        <div class="webPartContainer">
            <span class="Text">Hello World with container!</span>
            </div>
    </div>
    </div>
</td>

可能发生了什么?

提前致谢 !

编辑:CssRegistration 给我权限错误,为什么?

I've read in another question here how could I use custom CSS within my Sharepoint WebPart. So I followed this link:

http://www.synergyonline.com/blog/blog-moss/Lists/Posts/Post.aspx?ID=42

And I put my css as an embedded resource. Everything ok, I launch the page.

But my style doesn't appear.

I peek at the source code, and I find my resource:

<script src="/WebResource.axd?d=YuTREer2woiGbjiSaZdP0bLrdm6vpTygUffdwMFJr0zmn76B3vav0QRpmxzvYvKzZRnmgKpNbLHpnJf-W4rfrv-MrIZEoz6tWi5xHXTiN3lcxdP3s7ysDExW-eBQTlH8cUrMRw2&t=634369276247430484" type="text/javascript"></script>

Which leads me to my css:

.webPartContainer
{
    background-color:Aqua;
}

.webPartContainer .Text
{
    font-size:xx-large;
}

And here's where it references the styles:

<td class="ms-WPBorder" valign="top">
    <div WebPartID="2109154d-6921-46ac-84d4-8ce24a926617" HasPers="false" id="WebPartctl00_m_g_2109154d_6921_46ac_84d4_8ce24a926617" width="100%" class="ms-WPBody" allowDelete="false" allowExport="false" style="" >
        <div id="ctl00_m_g_2109154d_6921_46ac_84d4_8ce24a926617">
        <div class="webPartContainer">
            <span class="Text">Hello World with container!</span>
            </div>
    </div>
    </div>
</td>

What's possibly happening ?

Thanks in advance !

EDIT: CssRegistration gives me permission errors, why ?

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

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

发布评论

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

评论(1

ま昔日黯然 2024-11-03 13:25:10

浏览器不期望

string tempLink= "<link rel='stylesheet' text='text/css' href='{0}' />";
string location = Page.ClientScript.GetWebResourceUrl(this.GetType(), "myStyleSheet.css");
LiteralControl include = new LiteralControl(String.Format(tempLink, location));
Controls.Add(include);

The browser don't expect the content of a <script type='text/javascript'> tag to be CSS.
So you should change your code to something like this:

string tempLink= "<link rel='stylesheet' text='text/css' href='{0}' />";
string location = Page.ClientScript.GetWebResourceUrl(this.GetType(), "myStyleSheet.css");
LiteralControl include = new LiteralControl(String.Format(tempLink, location));
Controls.Add(include);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文