Adding custom attributes to asp.NET RadioButton control(向 asp.NET RadioButton 控件添加自定义属性)
问题描述
我想向名为 Key
的 asp.net RadioButton 添加一个自定义属性,我在客户端使用该属性进行 ajax 请求.
I want to add a custom attribute to an asp.net RadioButton called Key
which I'm using client-side for an ajax request.
我发现我的 aspx 标记如下:
What I'm finding is that my aspx markup which is the following:
<asp:RadioButton ID="rdoPost" GroupName=PreferredContactMethod" value="Post" onclick="DoStuff(this)" runat="server" />
在页面中呈现为
<span Key="ContactMethod">
<input id="rdoPost" type="radio" name="PreferredContactMethod"" value="Post" onclick="DoStuff(this);" />
</span>
而我期望(并希望)得到以下结果
whereas I'd expected (and hoped) to get the following
<input id="rdoPost" type="radio" Key="ContactMethod" name="PreferredContactMethod"" value="Post" onclick="DoStuff(this);" />
我用 asp TextBox 控件尝试了同样的事情,它的工作方式与我期望的完全一样,只需将 Key="myKey"
属性添加到 <input type=文本"/>
元素.
I've tried the same thing with an asp TextBox control and it works exactly as I'd expect simply adding the Key="myKey"
attribute to the <input type="text"/>
element.
标准 RadioButton 控件有没有办法解决这个问题,还是我必须从标准控件继承才能实现我想要的标记?
Is there a way around this with the standard RadioButton control, or will I have to inherit from the standard one to achieve the markup I'm wanting?
另外...(很抱歉同时问两个问题),向 html 标记添加非标准属性是不是一个坏主意?目前我在 JavaScript 中通过以下方式使用这些属性:
Also... (sorry to ask two questions at the same time), is adding non-standard attributes to html markup a bad idea anyway? Currently I'm using these attributes in JavaScript in the following way:
var key = rdoPost.Key;
推荐答案
我从下面的问题/答案中发现,最简单的方法是通过使用 InputAttributes
的代码隐藏属性如下:
I've found from the question/answer below that the easiest way to do this is via the code-behind using the InputAttributes
property as follows:
rdoPost.InputAttributes.Add("class", "myCheckBoxClass");
为什么 ASP.NetRadioButton 和 CheckBox 在 Span 内渲染?
这篇关于向 asp.NET RadioButton 控件添加自定义属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:向 asp.NET RadioButton 控件添加自定义属性
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01