Aspx.cs files

M

Manuel

Hi, i use sharepoint designer to design a aspx file of wss 3.0.
how can I associate an aspx file with this aspx?

Thanks
 
D

David Berry

Do you mean you have an ASPX file and you want to tell it which code behind
file to use? If so then add it to the @Page at the top of the code (the
first line or the page)

<%@ Page Codebehind="MyFile.aspx.cs" %>
 
Top