Extract csharp.acp into the folder where your EditPlus is installed.

To auto-complete the elements without confused without interferring
daily content inputs, I added prefaces and suffixes to the entities,

HTML elements prefaced with "el"
HTML attributes suffixed by "is"
ASPX controls prefaced with "asp"
ASPX properties suffixed by "as"

Not all ASPX controls or properties are in the ACP file, you can 
put more into it if you like. Some ASPX controls have abbrevated
aliases, for example, "asp:button" abbrevated as "aspbtn". 
Please check out the ACP file for details.

IMPORTANT NOTICE: 

Some C# auto-complete elements are also in this ACP file,
if you feel them inconvenient, please remove them by yourself.

-------------------------------------------------------------------

Examples:
To auto complete HTML elements, type "el" (without quotation mark),
the element name, and then press the space bar. For example,
type "elh1" and press the space bar,
	elh1 
changes to
	<h1></h1>
and the cursor is between ">" and "<", so you can continue typing
contents within the H1 element.

To auto complete HTML attributes, type the attribute name, and "is"
(without quotation mark), and then press the space bar. For example,
type "styleis" and press the space bar,
	styleis
changes to
	style=""
and the cursor is between the quotation marks, so you can continue
typing values of the Style attribute there.

You can reach me at: wmjordan{at}163[dot]com
