How can I dynamically update the properties of a CSS class using C#? I need to change the background image, font size, font style, and font based on user input through an interface. Once the changes are saved, I store them in a database. However, when the user logs back in, I struggle with how to display these custom styles.
Here is the structure of my master page:
<html>
<head></head>
<body>
<div id="Wrapper" class="abc">
</div>
</body>
</html>
What is the simplest way to update the values of the "abc" class based on each user's settings?