AutoeventwireupIndicates whether the page events are automatically connected to the network. If event auto-connection is enabledTrueOtherwiseFalse.
Automatic Network connection means that if the autoeventwireup attribute of the page command is set to true (or if this attribute is missing because it is set to true by default), the page framework will automatically call page events, that is, the page_init and page_load methods. In this case, no explicit handles clause or delegation is required.
Mybase: The mybase keyword of VB refers to the base class inherited by the current class.
Address URL Chinese garbled characters:
1. Add in Web. config
2. Add httputility. urlencode such as response. Redirect ("show. aspx? T = "+ httputility. urlencode (" China "); when receiving, use t = httputility. urldecode (request. querystring [" T "]);
Reference control properties in SQL:
String SQL = "select * From tablename ";
If (mytext. Text! = "")
{
SQL + = "where name like '%" + mytext. Text + "% '";
}