Type | Prefix | Example |
Array | arr | arrShoppingList |
Boolean | bln | blnIsPostBack |
Byte | byt | bytPixelValue |
Char | chr | chrDelimiter |
DateTime | dtm | dtmStartDate |
Decimal | dec | decAverageHeight |
Double | dbl | dblSizeofUniverse |
Integer | int | intRowCounter |
Long | lng | lngBillGatesIncome |
Object | obj | objReturnValue |
Short | shr | shrAverage |
Single | sng | sngMaximum |
String | str | strFirstName |
WebControls
Type | Prefix | Example |
AdRotator | adrt | adrtTopAd |
Button | btn | btnSubmit |
Calendar | cal | calMettingDates |
CheckBox | chk | chkBlue |
CheckBoxList | chkl | chklFavColors |
CompareValidator | valc | valcValidAge |
CustomValidator | valx | valxDBCheck |
DataGrid | dgrd | dgrdTitles |
DataList | dlst | dlstTitles |
DropDownList | drop | dropCountries |
| | |
| | |
| | |
HyperLink
lnk
lnkDetails
Image
img
imgAuntBetty
ImageButton
ibtn
ibtnSubmit
Label
lbl
lblResults
LinkButton
lbtn
lbtnSubmit
ListBox
lst
lstCountries
Panel
pnl
pnlForm2
PlaceHolder
plh
plhFormContents
RadioButton
rad
radFemale
RadioButtonList
radl
radlGender
RangeValidator
valg
valgAge
RegularExpression
vale
valeEmail_Validator
Repeater
rpt
rptQueryResults
RequiredFieldValidator
valr
valrFirstName
Table
tbl
tblCountryCodes
TableCell
tblc
tblcGermany
TableRow
tblr
tblrCountry
TextBox
txt
txtFirstName
ValidationSummary
vals
valsFormErrors
XML
xmlc
xmlcTransformResults
ADO.NET
Type
Prefix
Example
Connection
con
conNorthwind
Command
cmd
cmdReturnProducts
Parameter
parm
parmProductID
DataAdapter
dad
dadProducts
DataReader
dtr
dtrProducts
DataSet
dst
dstNorthWind
DataTable
dtbl
dtblProduct
DataRow
drow
drowRow98
DataColumn
dcol
dcolProductID
DataRelation
drel
drelMasterDetail
DataView
dvw
dvwFilteredProducts
Event-Handling Subroutines
The name of an event-handling subroutine will consist of the ID of the control that rasied the event followed by the type of event being handled. For example, a subroutine named btnSubmit_Click handles the Click event of a Button control named btnSubmit.
When a control that raises an event is not assigned an ID, the type of the control is used instead of the ID. For example, the subroutine named Button_Click handles the Click event of a Button control without an ID.
分享到:
相关推荐
### VS.NET2003与VS.NET2005控件命名规范详解 #### 引言 在软件开发过程中,良好的编码习惯对于提高代码可读性、维护性和团队协作至关重要。其中,合理地命名控件是编码实践中的一项基本且重要的工作。本文将详细...
在开发Visual Studio .NET 2005 (VS.NET 2005) 应用程序时,遵循一套良好的控件命名规范至关重要。这不仅提高了代码的可读性,也使得团队成员之间的协作更为顺畅。以下是一些VS.NET 2005中常见的控件类型及其建议的...
总之,ASP.NET服务器控件的命名规范是开发过程中的重要环节,它有助于提升代码质量,降低维护成本,促进团队间的有效沟通。因此,每位开发者都应该养成良好的命名习惯,将规范融入日常编码实践。
本文将深入探讨ASP.NET控件命名规范,通过分析标准控件前缀及其示例,帮助开发者理解并应用这些规则。 #### 核心概念解析 **控件命名规范**是指在ASP.NET应用程序中为各种控件赋予具有特定模式的名称。这种模式...
以下是一些关于ASP.NET控件命名规范的详细说明: 1. **前缀**: - 前缀通常用于标识控件的类型,如`adrt`代表AdRotator广告旋转器,`btn`表示Button按钮,`cal`代表Calendar日历控件等。这种命名方式有助于快速...
在ASP.NET开发中,遵循良好的命名...在团队开发中,制定并坚持统一的命名规范至关重要,因为它可以提高整个团队的生产力和协作效率。因此,无论是在个人项目还是团队项目中,都应重视并实践这些ASP.NET控件的命名规则。
.Net控件命名简写规范是针对.Net开发中所使用的各种控件的命名规则,旨在通过一致的命名约定来提高代码的可读性和可维护性。这份规范为开发者提供了一系列的控件简写标准,包括各种界面元素和组件的命名方法。 在...
### ASP.NET 控件命名规范详解 #### 概述 在软件开发过程中,良好的命名习惯能够极大地提高代码的可读性和可维护性。特别是在团队协作环境中,一致性的命名规范更是至关重要。本文档旨在介绍C#中ASP.NET控件的命名...
2.3 ADO.NET 控件命名规范 在处理数据库操作时,ADO.NET对象如DataTable、SqlCommand等,命名应体现数据关系。例如,使用customerTable来表示存储客户数据的DataTable,使用getCustomersCommand表示获取客户的...
在ASP.NET开发中,遵循一套良好的控件命名规则至关重要,这不仅能让代码更易于阅读和维护,还能提高团队协作效率。下面将详细解释ASP.NET控件的命名规则及其重要性。 1. **类型前缀**:为了清晰地识别控件的类型,...
#### 四、ADO.NET控件命名规范 在ASP.NET应用中,经常需要与数据库交互。为了确保与数据库交互部分的代码清晰易懂,ADO.NET控件也有一套推荐的命名规范: | **类型** | **前缀** | **示例** | | --- | --- | --- | ...
3.8.4 设置控件id规范 53 3.8.5 增强findcontrol功能 54 3.8.6 映射服务端控件值到客户端 55 3.8.7 禁止派生自compositecontrol的控件创建子控件 56 3.8.8 使用createchildcontrols的注意事项 56 3.8.9 不要...
### ASP.NET 命名规范详解 #### 一、引言 在软件开发过程中,遵循良好的编程规范至关重要。本文档将详细介绍ASP.NET项目中的命名规范,包括ADO.NET组件、WinForm控件以及Web控件的命名规则。这些规范旨在帮助开发者...
"asp.net控件缩写规范"正是这样一个准则,它指导开发者如何简洁地表示常见的ASP.NET控件。 以下是一些主要的ASP.NET控件及其常见的缩写方式: 1. **Label** - 用于显示静态文本,通常作为提示或说明。缩写:lb。 2...
#### 三、WinForm控件命名规范 Windows Forms(WinForm)是一种用于创建桌面应用程序的技术。其命名规范如下: - **Label**: 标签控件,简写为`lbl`。例如:`lblMessage`表示消息标签。 - **LinkLabel**: 链接标签...
3. ADO.NET控件命名规范: - 类型前缀:在数据库操作相关的控件中,如连接对象使用"con",命令对象使用"cmd",参数对象使用"parm"等。 - 示例:`conNorthwind`(连接到Northwind数据库的对象),`...
在VB.NET编程中,良好的命名规范对于代码的可读性和维护性至关重要。"vb.net命名参考" 提供了一种遵循匈牙利表示法的命名规则,以帮助开发者保持代码的一致性和整洁性。以下是根据标题、描述和标签内容详细解释的...
对于使用Visual Studio进行开发的程序员来说,了解并遵守微软官方的控件命名规范尤为必要。本文将详细介绍这些规范,并提供一些示例。 **控件命名规范** 微软官方的Visual Studio控件命名规范主要基于以下原则: ...