.NET/C# Incompatibles with clients

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

    .NET/C# Incompatibles with clients

    I am developing a large website (million pages) and I decided to drop
    most of the HTML I have been using and implementing mostly a .NET
    solution supported by C# as the language.

    Coding is about 90 times easier than using CSS and HTML and a real
    relief after struggling style sheets, but I am a little worried that
    not all clients will read the pages OK.

    Does anyone have any experience of writing systems which use little
    HTML, eg instead of using <lijust use a ListBox which is much
    easier?

    The trend seemed to be for a while using large client scripts to
    handle screen functions, but I have always found server side code much
    easier.
  • Jon Skeet [C# MVP]

    #2
    Re: .NET/C# Incompatibles with clients

    Logician <sales@logician s.comwrote:
    I am developing a large website (million pages) and I decided to drop
    most of the HTML I have been using and implementing mostly a .NET
    solution supported by C# as the language.
    >
    Coding is about 90 times easier than using CSS and HTML and a real
    relief after struggling style sheets, but I am a little worried that
    not all clients will read the pages OK.
    Why? Look at the HTML which is generated by your code. It's not like
    the clients will see your ASPX - they'll only see the result. You're
    still using HTML really, and you *should* still be using CSS too.

    You don't *have* to use AJAX, although the client experience will be
    better (for the vast majority of clients) if you do so - sensibly!

    --
    Jon Skeet - <skeet@pobox.co m>
    Web site: http://www.pobox.com/~skeet
    Blog: http://www.msmvps.com/jon.skeet
    C# in Depth: http://csharpindepth.com

    Comment

    • =?ISO-8859-1?Q?Arne_Vajh=F8j?=

      #3
      Re: .NET/C# Incompatibles with clients

      Logician wrote:
      I am developing a large website (million pages) and I decided to drop
      most of the HTML I have been using and implementing mostly a .NET
      solution supported by C# as the language.
      >
      Coding is about 90 times easier than using CSS and HTML and a real
      relief after struggling style sheets, but I am a little worried that
      not all clients will read the pages OK.
      >
      Does anyone have any experience of writing systems which use little
      HTML, eg instead of using <lijust use a ListBox which is much
      easier?
      >
      The trend seemed to be for a while using large client scripts to
      handle screen functions, but I have always found server side code much
      easier.
      I don't understand your post.

      Are you changing a web app to a desktop app ?

      Because an ASP.NET web app are still generating HTML, CSS and
      JavaScript.

      Arne

      Comment

      • Family Tree Mike

        #4
        Re: .NET/C# Incompatibles with clients

        One million pages at one per minute of coding gives you eight years of work
        (assuming 40 hour work weeks).

        I suspect there will be a few more technologies come out in that time
        period...

        "Logician" <sales@logician s.comwrote in message
        news:7a0cbb28-5953-4c84-bbb1-6f01fddcc350@m3 g2000hsc.google groups.com...
        >I am developing a large website (million pages) and I decided to drop
        most of the HTML I have been using and implementing mostly a .NET
        solution supported by C# as the language.
        >
        Coding is about 90 times easier than using CSS and HTML and a real
        relief after struggling style sheets, but I am a little worried that
        not all clients will read the pages OK.
        >
        Does anyone have any experience of writing systems which use little
        HTML, eg instead of using <lijust use a ListBox which is much
        easier?
        >
        The trend seemed to be for a while using large client scripts to
        handle screen functions, but I have always found server side code much
        easier.

        Comment

        Working...