Contributing as Developer

We would love to have you with us in this project. However, you would need to sign the Contributor License Agreement before submitting contributions.

Moreover, you will also need to create an account in MixERP Forum, and ask your questions there.

Dependency

Adding a new dependency needs to discussed with and approved by the repository owner (binodnp) beforehand.

Coding Style

Pascal Case

Camel Case

Lower Case Underscore

Naming ASP.net Server Controls and Html Controls

Names should be spelled in American English. The control id attribute should suffix the control name and type to suggest the type of control.

Correct

<asp:TextBox ID="FirstNameTextBox" runat="server" />

<input type="text" id="FirstNameInputText" runat="server" />

<asp:Button ID="SaveButton" runat="server" />

<input type="button" id="SaveInputButton" />

<button type="button" id="SaveButton" />

Incorrect

<asp:TextBox ID="txt_FirstName" runat="server" />

<input type="text" id="FirstNameTB" runat="server" />

<asp:Button ID="SaveBtn" runat="server" />

<input type="button" id="Save_Button" />

<button type="button" id="BtnSave" />

Other Important Rules to Follow

Related Topics

Share this page