Aspx.cs files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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" %>
 
Back
Top