English 中文(简体)
Asp.net Radio button, how to change the madebell servicesside?
原标题:Asp.net radio button, how to change the rendered label server side?
  • 时间:2012-04-19 21:15:26
  •  标签:
  • c#
  • asp.net

我不得不修改一些现有无线电台的代码,该台有一套基于价值和用于无线电台的逻辑。 我确实需要做的是改变标签,我并不真的希望修改所产生的投入,因为它打破了迷人的逻辑。 是否有任何人知道这一服务器如何发挥作用? 许多人感谢!

最佳回答

我最终改变了客户。

                $(function() {
                        var capRateLabel = $( lblCapRate ).next();
                        if(capRateLabel)
                        {
                            capRateLabel.text( newtext ); 
                        }
                })
问题回答

简单地通过文本财产:

MyRadioButton.Text = "My Radio Button";

这取决于你想要改变标签。 您可使用“劳动法典”的“劳动法典”。

如果你们比我更需要考虑建立自己的<条码>,RadioButton控制;这确实是困难的,它将给你必要的灵活性。





相关问题
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!

热门标签