About Me

My photo
Northglenn, Colorado, United States
I'm primarily a BI Developer on the Microsoft stack. I do sometimes touch upon other Microsoft stacks ( web development, application development, and sql server development).

Tuesday, May 09, 2006

How To: Run Web Control next to an application during development

So here at work, we are trying to get some web controls to work with pop-up windows. Here is a nice easy way to set up your test envirnoment.

Create a new website for testing. Eg. WebControlTester.

within the Solution Explorer place your web control into a new folder App_Code

then add a web.config file to the Solution Explorer.

Within the web.config file add:

<pages>
  <controls>
    <add namespace="Your.Namespace.In.WebControl" tagprefix="SomeTagPrefix">
  </controls>
</pages>

Now you can edit your web control, build it and then switch to the web site and run it.

<^_^>

No comments: