Change css element with C#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peter

    #1

    Change css element with C#

    I need to change the css element with C# on the server side, how do I do
    that?

    I need to change the following:

    .reportviewercs s
    {
    display: inline;
    }

    to

    .reportviewercs s
    {
    display: none;
    }



  • Matthijs Krempel

    #2
    Re: Change css element with C#

    Hi Peter,

    Put the style in your HTML, that will override the stylesheet.

    With kind regards,

    Matthijs Krempel

    "Peter" <pczurak@nospam .nospamschreef in bericht
    news:Ocaj#dkmIH A.3780@TK2MSFTN GP06.phx.gbl...
    I need to change the css element with C# on the server side, how do I do
    that?
    >
    I need to change the following:
    >
    .reportviewercs s
    {
    display: inline;
    }
    >
    to
    >
    .reportviewercs s
    {
    display: none;
    }
    >
    >
    >

    Comment

    Working...