vote up 2 vote down star

So, I need to make changes to an asp.net built site that was recently handed to me. The problem is that I'm a php coder and I don't know jack about asp.net development.

The page I am trying to modify is associated with the contact form. In the contact folder, there is a default.aspx with the following code:

<%@ Page language="c#" Codebehind="default.aspx.cs" 
  AutoEventWireup="false" Inherits="watergrass.contact._default" %>

So then I found the default.aspx.cs and poked around in the code. It made sense, so I made a few changes, but nothing happened when I refreshed the browser. So then I deleted all of the file's content and realized nothing changed again. At this point I'm like WTF? So, my assumption is that I need to re-compile the site or something along those lines? If so, how would I go about doing this?

If anyone has some pointers, they would be greatly appreciated!

flag

What version of asp.net are you using? – jinsungy Oct 9 at 14:35
no clue. im using notepad++ to mess with the code. – Roeland Oct 9 at 14:40
2  
Download Visual Web Developer Express. You need to compile .cs files. – jinsungy Oct 9 at 14:42
2  
microsoft.com/express/vwd – jinsungy Oct 9 at 14:43
1  
Ze cs files! Zey do Nothing! – Greg Oct 9 at 14:51
show 1 more comment

5 Answers

vote up 3 vote down check
  1. That's ASP.Net - ASP is something different =)
  2. Coming from PHP you probably didn't know that .cs files need to be compiled, and then redeployed. No harm no foul, but go read up about that. It can be different in different circumstances - for simple solutions you can launch a debug webserver with F5 that will preview your changes. For more complex apps (like what we use at work) we run a production IIS setup on our local machines. Try F5, see if that does it.
link|flag
#1 is a good point. I edited the question to say asp.net instead of asp. – Greg Oct 9 at 14:47
ASP.net and ASP are similar in code right? ASP.net is just more suited for larger development? – Roeland Oct 9 at 14:51
1  
Negative sir. VB.Net and VB6 used in ASP look similar, but ASP.Net is wildly different from ASP. ASP.Net has a thing called a Page Lifecycle, while ASP is more like PHP - just order of execution. – Tom Ritter Oct 9 at 14:55
vote up 0 vote down

You don't have to use code-behind(I don't recommend it) and you can have the code inline much like classic ASP.

INFO: ASP.NET Code-Behind Model Overview

<%@ Language=C# %>
<HTML>
   <script runat="server" language="C#">
   void MyButton_OnClick(Object sender, EventArgs e)
   {
      MyLabel.Text = MyTextbox.Text.ToString();
   }
   </script>
   <body>
      <form id="MyForm" runat="server">
         <asp:textbox id="MyTextbox" text="Hello World" runat="server"></asp:textbox>
         <asp:button id="MyButton" text="Echo Input" OnClick="MyButton_OnClick" runat="server"></asp:button>
         <asp:label id="MyLabel" runat="server"></asp:label>
      </form>
   </body>
</HTML>
link|flag
vote up 0 vote down

Maybe you should download Visual Web Developer Express and try to make some simpler sites. The point is that all .cs code is normally compilled into a dll in your site's bin directory.

link|flag
vote up 2 vote down

Try downloading Visual Web Developer and opening the site with that. There should be a project file somewhere that will show up when you select open project from the menu.

link|flag
i will try this. – Roeland Oct 9 at 14:42
downloaded.. but i cant find a project file.. now what? – Roeland Oct 9 at 15:25
in the bin file there are 2 .dll files and 2 .pdb files – Roeland Oct 9 at 15:27
1  
You're looking for a .vbproj, .csproj file or .sln file. Normally a level or two above the bin directory – s_hewitt Oct 9 at 16:25
1  
If there are none of those files, try using the File menu in Visual Web Developer and opening the directory as a WebSite. – s_hewitt Oct 9 at 16:25
vote up 1 vote down

I'm assuming you are using Visual Studio. Rebuild the project after making changes to .cs files. You don't have to rebuild when you only make changes to .aspx files.

link|flag

Your Answer

Get an OpenID
or

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