我如何创建一个具有用户界面详细信息和功能的程序?其他细节可以针对不同的用户进行不同的设置吗?

发布于 2024-11-15 04:52:19 字数 152 浏览 0 评论 0原文

我正在创建一个程序,用于管理 ASP.NET C# 中的办公室,该程序可以由不同的用户客户端运行。
我希望每个人都能够根据个人需求设置特定的细节,例如标题文本、标签文本、按钮颜色和样式等。

如何做到这一点?

I am creating a program for managing an office in asp.net c# that can be run by different users-clients.
I want each one to be able to set specific details according to individual needs such as texts of headers label texts button color and style etc.

How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江湖彼岸 2024-11-22 04:52:19

您必须在网络应用程序中使用 2 个东西:

  1. Cookie 来保存用户选择的主题并在其他时间使用它1, 2
  2. 主题现在你不在我在说什么(你可以看到这个链接:12 )。

我们使用cookie(它是替代方式)来保存选定的主题,并在session.Start(或更好的地方)中检查此cookie,如果存在,则为用户设置它。

更多链接:
演练:创建用户可选择的主题

You must use 2 thing in your web-app:

  1. Cookie for saving user select theme and use that for other times 1, 2.
  2. Theme Absently you now What I'm talking about(you can see this links: 1, 2 ).

We use cookie (it's alternative way) to save Selected theme in that, and check for this cookie in session.Start(or better place) and if exist set that for user.

More Link:
Walkthrough: Creating User-Selectable Themes

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文