vote up 2 vote down star

I know silly question but i tried looking it up on Google with no luck.

flag

53% accept rate
Are you going from a single file (i.e. inline code) to a code-beside file? – Jimmy Sep 10 at 17:29

2 Answers

vote up 3 vote down check

Add an Inherits attribute to your <@Page directive with the name of the class represented in the cs file. For example:

<@Page ... Inherits="MyNamespace.MyCustomPage">
link|flag
vote up 0 vote down

Hi,

As Jason has already answered, also put a "CodeFile=anycodefile.cs" in the page directive.
<@Page ... Inherits="MyNamespace.MyCustomPage" CodeFile="MyCustomPage.cs">

If your page has a code-behind file, use the CodeFile attribute. Otherwise put the assembly containing the code behind class in the bin folder and use the inherits. The class must derive from webpage or usercontrol and must be public.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.