Wednesday, September 21, 2022

How to make website background red in web.config asp.net c#

 CSSFromWebConfig.aspx:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CSSFromWebConfig.aspx.cs" Inherits="ForForums.CSSFromWebConfig" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
        <style type="text/css">

		.primary-background-color
		{
			background-color: #126192;
		}
		.primary-font-color {
			color: <%= ConfigurationManager.AppSettings["customerColor"] %>;
		} 

</style>
</head>
<body>
    <form id="form1" runat="server">
    <div class="primary-font-color">
    Test Color
    </div>
    </form>
</body>
</html>

 

CSSFromWebConfig.aspx.cs:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace ForForums
{
    public partial class CSSFromWebConfig : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}

 

web.config:

  <appSettings>
    <add key="customerColor" value="#126192"/>
  </appSettings>
---------------------------------------------------------------------




No comments:

Post a Comment