Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Events are not raised for HTML controls that you run as server controls in Windows Server 2003


View products that this article applies to.

Symptoms

In Microsoft Visual Studio .NET, you can run HTML controls as server controls in a Microsoft ASP.NET Web Application project. However, when you run the corresponding Web application in Microsoft Windows Server 2003, you may notice that the events of the HTML controls are not raised.

Note This behavior only occurs in Windows Server 2003.

↑ Back to the top


Workaround

To work around this behavior, add the server name that you used to create your ASP.NET Web application to the list of trusted Web sites in Microsoft Internet Explorer, and then specify the default security settings for trusted Web sites. To do this, follow these steps:
  1. Start Internet Explorer.
  2. On the Tools menu, click Internet Options. The Internet Options dialog box appears.
  3. On the Security tab, click Trusted sites, and then click Sites. The Trusted sites dialog box appears.
  4. In the Add this Web site to the zone box, type the server name that you used to create your ASP.NET Web application, and then click Add. For example, depending on the server name that you specified when you created the project, you may type either localhost or Server_Name.
  5. Click Close, click Default Level, and then click OK.
  6. Run your ASP.NET Web application. The problem that is mentioned in the "Symptoms" section of this article does not occur.

↑ Back to the top


Status

This behavior is by design.

↑ Back to the top


More information

Steps to reproduce the behavior

  1. Start Visual Studio .NET.
  2. Use either Microsoft Visual Basic .NET or Microsoft Visual C# .NET to create an ASP.NET Web Application project. By default, the WebForm1.aspx file is created.

    Note You may specify either "localhost" or "Server_Name" as the name of the server when you create the project.
  3. Add a Button control to the WebForm1 Web form.
  4. On the WebForm1 Web form, right-click Button, and then click Run As Server Control.
  5. Double-click Button, and then add the following code to the Button1_ServerClick event handler.

    Visual Basic .NET code
    Button1.Value = "Test"
    Visual C# .NET code
    Button1.Value = "Test";
  6. Build and then run the project. The WebForm1 Web form appears.
  7. Click Button. The text does not change from "Button" to "Test". This behavior indicates that the Button1_ServerClick event is not raised.
  8. Quit Internet Explorer.
  9. In Visual Studio .NET, set a breakpoint on the line of code that you added in step 5.
  10. Build and then run the project. The WebForm1 Web form appears.
  11. Click Button. The control does not reach the breakpoint. Therefore, the Button1_ServerClick event is not raised.

↑ Back to the top


References

For more information, visit the following Microsoft Developer Network (MSDN) Web sites:

↑ Back to the top


Keywords: kbwebserver, kbhtmlobj, kbhtml, kbservercontrols, kbevent, kbprb, KB835390

↑ Back to the top

Article Info
Article ID : 835390
Revision : 8
Created on : 5/17/2007
Published on : 5/17/2007
Exists online : False
Views : 366