Re: Dynamically set editor background colour VB Re Post 8845

  •  08-03-2009, 5:54 AM

    Re: Dynamically set editor background colour VB Re Post 8845

     vb

     

    1. Public ReadOnly Property bgcol() As String  
    2.     Get  
    3.         If Request.QueryString("bgcol"Is Nothing Then  
    4.             Return Nothing  
    5.         Else  
    6.             Return Request.QueryString("bgcol").ToString()   
    7.            
    8.         End If  
    9.     End Get  
    10. End Property  
    11. Protected Overloads Overrides Sub OnLoad(ByVal e As EventArgs)   
    12.     If bgcol IsNot Nothing Then  
    13.         Editor1.EditorBodyStyle = "background-color:" & bgcol   
    14.     End If  
    15. End Sub  
    c#
    1. public string bgcol   
    2.      {   
    3.          get  
    4.          {   
    5.              return (Request.QueryString["bgcol"] == null) ? null : Request.QueryString["bgcol"].ToString();   
    6.          }   
    7.      }   
    8.      protected override void OnLoad(EventArgs e)   
    9.      {   
    10.          Editor1.EditorBodyStyle = "background-color:" + ((bgcol == null) ? string.Empty : bgcol);   
    11.   
    12.      }  
     

    Ken

View Complete Thread