ASP.NET Development

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Barry

    ASP.NET Development

    Hi

    I am developing an ASP.NET App using Visual Studio, but whenever i try to
    ad some code in the .ASPX.cs file i get some errors, also the Page_Load(??,
    ??) if not getting called.
    Are there any code examples of adding code <%= ?? %> to the .ASPX.CS
    files, i have sofar not succeeded in my attempts.
    I find that most of the samples priovided in Visual Studio eg. GrocerToGo
    or CustomParsing have very few files (a .ASPX.cs file and a corresponding
    ..cs file) are these app generated using Visual Studio, if not then is there
    a development environment available for download for developing ASP.NET Apps
    (not Visual Studio) i don't mind developing using a text editor, but
    creating the Make file is quit a problem.

    Barry



  • dan.c.roth@gmail.com

    #2
    Re: ASP.NET Development

    Hi

    1. What errors are you getting?

    Regards,

    Daniel Roth
    MCSD.NET

    Comment

    • dan.c.roth@gmail.com

      #3
      Re: ASP.NET Development

      Hi

      Also Look at:


      for <%=

      Regards,

      Daniel Roth
      MCSD.NET

      Comment

      • Barry

        #4
        Re: ASP.NET Development

        Hi
        from the Visual Studio menu option Inser Script code i add the following
        lines, but the method is not getting invoked

        <script language="C#" runat="Server">
        protected void Page_Load(objec t sender, System.EventArg e)
        {
        Response.Write( "Hello");
        }
        </script>

        <dan.c.roth@gma il.com> wrote in message
        news:1115387104 .953035.174040@ f14g2000cwb.goo glegroups.com.. .[color=blue]
        > Hi
        >
        > Also Look at:
        >[/color]

        ml/cpconDatabindin gExpressionSynt ax.asp[color=blue]
        >
        > for <%=
        >
        > Regards,
        >
        > Daniel Roth
        > MCSD.NET
        >[/color]


        Comment

        • dan.c.roth@gmail.com

          #5
          Re: ASP.NET Development

          Hi

          If you are going to do that you need to put AutoEventWireup ="true" in
          the @Page

          Regards,

          Daniel Roth
          MCSD.NET

          Comment

          Working...