English 中文(简体)
内容移至类别c
原标题:passing elements into class c#

我曾问过一个类似问题,如果是重复的话,那么我会很抱歉。

这里我的问题是,我有一个总页,上面有一页的标签。

global class:

private static label myLabel;

public label updateLabel
{
  set {  myLabel = value;}
  get { return myLabel;}
}

一、导 言

global.updateLabel = labelOnMasterPage;

我现在说,我对申请有控制,我说:

global.updateLabel.Text = "my new text for label";

这将更新主页上的标签和所有工作。 现在,我只与一个用户的伐木合作,而这一浏览器有多个用户,我的问题是,如果我更新一个用户的标签,这将影响到其他用户看到的是什么?

是否有更好的办法解决这一问题? 感谢你们的时间。

问题回答

是,static 这里将适用于所有可以查阅的法典,而不论有无校对或用户。 非常罕见的是,你想要的是<条码> static。 在像爱幼会这样的高度成熟的环境中开展实地工作。 NET。

您还人为地将贴标签(long<>em>)的有效期延长至超出预定时间。

还有一些替代品,如用户会议或应用水平,但储存string<>em>(如果有的话),而不是标签标。

如果处于静态类别,所有用户都会看到这种情况。

你们需要仔细考虑在伙伴关系中采用这种方式。 校对数量造成的净应用。 如果你真的想这样做,你或许会想让它一夜安全。

从个人的角度来说,我会把它储存在一个数据库中,这种做法似乎非常 ha。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!