An error occurred while compiling the compiler. The error code is 12011-06-08.
I have checked a lot in hundreds of times. Some of them say that the CLASS name is repeated, and some say that the virtual memory is insufficient. All methods cannot solve this problem. Finally, we found that the original page references the ascx user control, and the Inherits name in the ascx file is incorrect. |
Category: c #
| Comment (0) | browse (12)
Install PHP5 in Windows 2003 IIS6.0 at AM
1. download the latest compressed package at http://www.php.net/downloads.php; 2. decompress the package to the PHP Directory on disk D (D: \ PHP ); 3. modify a configuration file and use php. ini-recommended in the compressed package to change it to php. ini. Modify the following items: A. Find register_globals = Off and change off to On (there are two places). (If you install DZ Forum, or blank pages such as UCHOME and Ucenter, open it here .) B. Search for short_open_tag = Off and change off to On. Here, the running security |
Read the full text>
Category: asp.net
| Comment (0) | browse (52)
C # And js url encoding and decoding
Use JS to encode the URL of Chinese characters. The function is encodeURIComponent. Using this function encoding is equivalent to the Server. UrlEncode method in C. In C #, you can use Request. QueryString [""]. ToString () to directly decode the encoded string, or use Server. UrlDecode to decode the encoded string. In C #, you can use Request. Url. OriginalString to obtain the URL. If you use Request. Url. ToString (), the obtained Url is decoded. |
Category: c #
| Comment (0) | browse (53)
The ewebeditor button is invalid and cannot upload files.
Recently I found that all my ASP websites have the ewebeditor editor in the background, and the button is invalid. I thought it was a browser problem, so I asked my friend to go to the background for testing and found that it was good. So I changed my browser and the problem persists! As a result, I searched for answers on the Internet. As a result, many friends on the Internet encountered these problems, which turned out to be incompatible with IE7 and IE8 browsers. So I asked my friend if your browser is IE6, and the other party replied. The cause of the error is that ie8 shields the anonymous method, so we need to change it to The onclick method, open the editor. js file under include, and there is such a code segment (probably in the function where 166 is located ): |
Read the full text>
Category: asp.net
| Comment (0) | browse (125)
Invalid procedure call or argument: 'chr' 2010-07-09
Today, I uploaded the prepared ASP program to the U.S. server and found the following error occurred when uploading images: Microsoft VBScript runtime error '800a0005' Invalid procedure call or argument: 'chr' Upload. asp, line 75 Upload. asp is a component-less upload program. This error may be used by the server. |
Read the full text>
Category: asp.net
| Comments (2) | views (1214)
Sql2005 create file operating system error 5 Access Denied error 18022010-04-07
Problem 1: When you try to open or CREATE a physical file xx, create file encounters an operating system error 5 (Access denied .). Best Answer: This is because the SQL Server startup account (generally a system or an operating system administrator) has no permission to create files in a root directory. Right-click the disk and view the permissions of the user on the "Security" tab in properties. Add users: network service and SYSTEM. Therefore, the permissions of the specified directory are added to the two users, which are "fully controlled ". To Log On As A sa user, you must set the sa status and password for the login in security. |
Category: Ms Sqlserver
| Comment (0) | browse (162)
Response. Redirect ("Url", true/false)
Response. Redirect ("", true/false) If it is True, all operations after the page Jump are terminated. That is, execute Exit sub/function and so on. If it is false, you can imagine it. |
Category: c #
| Comment (0) | browse (265)
"Sys" undefined problem encountered by Asp.net using AjaxControlToolkit. dll
Read the full text>
Category: asp.net
| Comment (0) | browse (585)
GUID class in ASP. NET
(Go to CSDN) GUID (Global unique identifier) is a globally unique identifier, which consists of the ID numbers on the NIC (each Nic has a unique ID number) and a 16-byte binary value generated by the unique number of the CPU clock. The GUID format is "xxxxxxxx-xxxx-xxxxxxxxxxxx", where each x is a hexadecimal number in the range of 0-9 or a-f. For example, 6F9619FF-8B86-D011-B42D-00C04FC964FF is a valid GUID value. No two computers in the world will generate duplicates. |
Read the full text>
Category: asp.net
| Comment (0) | browse (6481)
Verify that the columns in the GridView control are edited at pm
When the GridView data is bound: Protected void GridView1_RowDataBound (object sender, GridViewRowEventArgs e) { If (e. Row. RowState & DataControlRowState. Edit) = DataControlRowState. Edit) { // Processing program } |