• <small id='PXVjf'></small><noframes id='PXVjf'>

      <i id='PXVjf'><tr id='PXVjf'><dt id='PXVjf'><q id='PXVjf'><span id='PXVjf'><b id='PXVjf'><form id='PXVjf'><ins id='PXVjf'></ins><ul id='PXVjf'></ul><sub id='PXVjf'></sub></form><legend id='PXVjf'></legend><bdo id='PXVjf'><pre id='PXVjf'><center id='PXVjf'></center></pre></bdo></b><th id='PXVjf'></th></span></q></dt></tr></i><div id='PXVjf'><tfoot id='PXVjf'></tfoot><dl id='PXVjf'><fieldset id='PXVjf'></fieldset></dl></div>

    1. <tfoot id='PXVjf'></tfoot>
    2. <legend id='PXVjf'><style id='PXVjf'><dir id='PXVjf'><q id='PXVjf'></q></dir></style></legend>

        • <bdo id='PXVjf'></bdo><ul id='PXVjf'></ul>

        asp.net在后端动态添加样式表调用的方法

        时间:2023-12-15

            <legend id='LHj5j'><style id='LHj5j'><dir id='LHj5j'><q id='LHj5j'></q></dir></style></legend>
              • <tfoot id='LHj5j'></tfoot>

                  <tbody id='LHj5j'></tbody>
                <i id='LHj5j'><tr id='LHj5j'><dt id='LHj5j'><q id='LHj5j'><span id='LHj5j'><b id='LHj5j'><form id='LHj5j'><ins id='LHj5j'></ins><ul id='LHj5j'></ul><sub id='LHj5j'></sub></form><legend id='LHj5j'></legend><bdo id='LHj5j'><pre id='LHj5j'><center id='LHj5j'></center></pre></bdo></b><th id='LHj5j'></th></span></q></dt></tr></i><div id='LHj5j'><tfoot id='LHj5j'></tfoot><dl id='LHj5j'><fieldset id='LHj5j'></fieldset></dl></div>
                • <bdo id='LHj5j'></bdo><ul id='LHj5j'></ul>

                  <small id='LHj5j'></small><noframes id='LHj5j'>

                • 在ASP.NET后端动态添加样式表一般有以下两种常用方法:

                  1. 直接在后端代码中添加样式

                  示例代码如下:

                  protected void Page_Load(object sender, EventArgs e)
                  {
                      Label myLabel = new Label();
                      myLabel.ID = "myID";
                      myLabel.Text = "该标签将使用自定义样式";
                  
                      // 创建一个style标签
                      LiteralControl style = new LiteralControl();
                      style.Text = "<style type='text/css'>";
                  
                      // 添加自定义样式
                      style.Text += "#myID {color: red; font-weight: bold;}";
                  
                      // 结束style标签 
                      style.Text += "</style>";
                  
                      // 添加标签
                      form1.Controls.Add(myLabel);
                  
                      // 添加style标签
                      form1.Controls.Add(style);
                  }
                  

                  以上代码通过在后台Code-behind页面中直接创建一个LiteralControl对象,并在其中添加<style>标签,再将需要添加样式的控件动态添加到页面当中,实现了在后端动态添加样式的功能。

                  2. 动态引用外部CSS样式表

                  示例代码如下:

                  protected void Page_Load(object sender, EventArgs e)
                  {
                      // 创建一个LinkButton样式页面
                      LinkButton myLinkButton = new LinkButton();
                      myLinkButton.ID = "myID";
                      myLinkButton.Text = "该标签将使用外部样式表";
                  
                      // 设置LinkButton的样式表链接
                      myLinkButton.Attributes.Add("href", "MyStyle.css");
                      myLinkButton.Attributes.Add("rel", "stylesheet");
                      myLinkButton.Attributes.Add("type", "text/css");
                  
                      // 添加标签
                      form1.Controls.Add(myLinkButton);
                  }
                  

                  以上代码通过在后台Code-behind页面中创建一个LinkButton控件,并在其中添加hrefreltype属性来引用外部CSS样式表,实现了在后端动态添加样式的功能。需要注意的是,需要将css文件放在相应目录下以使该代码能够找到css文件。

                  上一篇:CSS 实现磨砂玻璃(毛玻璃)效果样式 下一篇:CSS表格样式:圆角,隔行,变色的具体实现

                  相关文章

                • <legend id='458Hg'><style id='458Hg'><dir id='458Hg'><q id='458Hg'></q></dir></style></legend>
                  <tfoot id='458Hg'></tfoot>

                    <i id='458Hg'><tr id='458Hg'><dt id='458Hg'><q id='458Hg'><span id='458Hg'><b id='458Hg'><form id='458Hg'><ins id='458Hg'></ins><ul id='458Hg'></ul><sub id='458Hg'></sub></form><legend id='458Hg'></legend><bdo id='458Hg'><pre id='458Hg'><center id='458Hg'></center></pre></bdo></b><th id='458Hg'></th></span></q></dt></tr></i><div id='458Hg'><tfoot id='458Hg'></tfoot><dl id='458Hg'><fieldset id='458Hg'></fieldset></dl></div>

                    <small id='458Hg'></small><noframes id='458Hg'>

                      <bdo id='458Hg'></bdo><ul id='458Hg'></ul>