CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Feb 2009
    Posts
    56

    Arrow Tools to read ASPx

    I amthinking if there is a tool for me to read code of C# or VB in aspx pages from a client side when I want to view the source code of them ?

    Thank you
    -----

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Tools to read ASPx

    You'd have to be able to FTP it from the root folder of the site. Here's what one looks like for a client. It's just an XML file names Show.asx
    Code:
    <ASX VERSION="3.0">
      <TITLE>***</TITLE>
      <COPYRIGHT>© *** 2009</COPYRIGHT>
      <ENTRY>
        <TITLE>Last Night's Show</TITLE>
        <REF HREF="mms://**.***.com/***/show.wma" />
        <AUTHOR>**</AUTHOR>
        <ABSTRACT>Friday, May 23, 2009 </ABSTRACT>
      </ENTRY>
    </ASX>
    Server-generated Web page based on ActiveX scripting that uses the Microsoft ASP.NET framework; ASP code is first processed on the Web server and the resulting HTML code is sent to the user's Web browser.

    Used by Web pages with URLs ending in ".aspx."
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Tools to read ASPx

    Code:
    Server-generated Web page based on ActiveX scripting that uses the Microsoft ASP.NET framework; ASP code is first processed on the Web server and the resulting HTML code is sent to the user's Web browser.
    
    Used by Web pages with URLs ending in ".aspx."
    It'd do you no good after it's processed
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  4. #4
    Join Date
    Feb 2009
    Posts
    56

    Re: Tools to read ASPx

    I'd just would like to see if it is around. And you don't like it ?
    And I still don't know howto see the source C#/VB code
    -----

  5. #5
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Tools to read ASPx

    It's in the ASPX.VB file on the server, which is why you don't see it (as explained in the quote)
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  6. #6
    Join Date
    Jun 2008
    Location
    Netherlands
    Posts
    106

    Re: Tools to read ASPx

    WS_FTP is a good tool to view the source of any server sided script



    As long as you have the right login and password for the server they reside on :-)

  7. #7
    Join Date
    May 2002
    Posts
    10,943

    Re: Tools to read ASPx

    Original poster was banned. Doesn't make much sense to continue a thread that he/she cannot see.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured