• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Reply to: Asp

Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "Asp"

Collapse

  • DaveP
    replied
    Thanks Jaws

    Leave a comment:


  • Jaws
    replied
    Originally posted by DaveP View Post
    If I learn ASP .NET is there other packages I need to learn as well, or is that it.


    Please beware before/if you respond the world of website creation is new to me so, I'd be learning right from the beginning.
    As mentioned earlier, PHP is possibly better for you as a beginner.

    The fundamentals on how websites (and HTTP specifically [GETs/POSTs] etc) operate, how cookies work, the differences between client side and server side script (which some people seem to have trouble understanding) and more need to be learned before you approach writing any form of server side web "application". HTML/Javascript/CSS are also a necessity (although it always used to surprise me how many developers don't have a good grasp on JS).

    If you were to learn ASP.NET as a marketable skill you really should take a good look at object oriented programming with c# (or vb.net) as a language. This will mean reading a lot of books and even then some of what you know will be outdated, so keeping track of a variety of blogs is also important. It is really quite a big topic and I suppose without the right background can be difficult to be sure on the best approaches to take.

    Leave a comment:


  • Cowboy Bob
    replied
    Originally posted by Weltchy View Post
    If you look at a the recent examples found on various blogs, alot of the lazy arse developers tend to use sql datasource objects to provide a connection into the database from the web page.

    I guess alot of new developers look at this, take it to be the defacto standard becauses its how <insert microsoft personality name here> does it in their example and then codes to that pattern.
    And then they wonder why the DB runs out of connections in its pool (or more seriously that transactional integrity is broken) when more that 20 users access the site at the same time...

    The same applies to PHP and other scripting languages BTW, which is why if you ever look at the DB code behind them you'll see all kinds of weird and wonderful ways to get round the issues ranging from strange flags in the database, to full on table locking.

    Leave a comment:


  • Weltchy
    replied
    Originally posted by Cowboy Bob View Post
    MVC confusing? It's been THE standard methodology for web development going back years. The fact that I have just discovered that not only does it seem to be new to MS, but that it's confusing to supposedly experienced contractors made me seriously go

    What are you people doing? Connecting directly to the DB from a front end script or something equally awful?
    If you look at a the recent examples found on various blogs, alot of the lazy arse developers tend to use sql datasource objects to provide a connection into the database from the web page.

    I guess alot of new developers look at this, take it to be the defacto standard becauses its how <insert microsoft personality name here> does it in their example and then codes to that pattern.

    Leave a comment:


  • KevinS
    replied
    Cutting Edge: Ruby on Rails

    Most popular: Probably PHP/AJAX

    Also, have a look at Apture - I read an article that reckoned this lot are the next Google in changing the web advertising world, but the technology is cool.. There is an example here of how it works..

    Leave a comment:


  • DaveP
    replied
    So much of the above is, as a beginner alien to me.

    I didn't realise that there is such a choice, or that ASP was different to ASP .NET

    So to all current/cutting edge web site creators out there.

    What is the latest language thats in use or whats the most popular choice for web site creation.

    If I learn ASP .NET is there other packages I need to learn as well, or is that it.


    Please beware before/if you respond the world of website creation is new to me so, I'd be learning right from the beginning.

    Leave a comment:


  • VectraMan
    replied
    Originally posted by thunderlizard View Post
    Classic ASP is bonkers. Whoever decided that starting a code loop in 1 script tag and finishing it in another one 3 feet further down the page with all manner of spaghetti in between was an acceptable way of doing things?
    Perl and PHP did the same though didn't they?

    And they're not really two different script tags. It looks a bit like a web page with mixed HTML and script, but the HTML is essentially compiled to one big document.write() call, so really it's all one script.

    Pretty horrible, and by making it a bit like a web page, and a bit like a script, they succeeded in confusing both web monkeys and code monkeys alike.

    Leave a comment:


  • lilelvis2000
    replied
    Originally posted by Cowboy Bob View Post
    MVC confusing? It's been THE standard methodology for web development going back years. The fact that I have just discovered that not only does it seem to be new to MS, but that it's confusing to supposedly experienced contractors made me seriously go

    What are you people doing? Connecting directly to the DB from a front end script or something equally awful?
    Admititly, I haven't done web development in years and the session really
    was geared for ASP.Net geeks. So a lot of stuff was skipped over. The routing threw me off at first. But the concept I like and I'm sure that if I ever bother to learn ASP.Net I'll understand it better.

    When I was doing ASP waaaay back when. The ASP just did a bit of presentation work. The rest was done by COM objects which has all the business logic in it. I'm guessing, aside from some fancy controls and code-behind...it hasn't progressed much since.

    Leave a comment:


  • Cowboy Bob
    replied
    Originally posted by thunderlizard View Post
    Classic ASP is bonkers. Whoever decided that starting a code loop in 1 script tag and finishing it in another one 3 feet further down the page with all manner of spaghetti in between was an acceptable way of doing things?
    PHP

    Leave a comment:


  • thunderlizard
    replied
    Classic ASP is bonkers. Whoever decided that starting a code loop in 1 script tag and finishing it in another one 3 feet further down the page with all manner of spaghetti in between was an acceptable way of doing things?

    Leave a comment:


  • VectraMan
    replied
    Originally posted by DimPrawn View Post
    99% of ASP.NET developers have been using drag and drop widgets with database code in the pages. Nice for websites with up to 4 pages.....
    Is "developer" really the right word?

    I can do ASP. About 4 years ago I had to modify a shopping basket system done in perl, but I couldn't cope with perl so rewrote most of it with ASP using JavaScript. If I'd been smart I would have done it in ASP .NET and learned myself a marketable skill whilst somebody else was paying, but unfortunately I took the shortest route.

    Leave a comment:


  • DimPrawn
    replied
    Originally posted by Cowboy Bob View Post
    MVC confusing? It's been THE standard methodology for web development going back years. The fact that I have just discovered that not only does it seem to be new to MS, but that it's confusing to supposedly experienced contractors made me seriously go

    What are you people doing? Connecting directly to the DB from a front end script or something equally awful?
    99% of ASP.NET developers have been using drag and drop widgets with database code in the pages. Nice for websites with up to 4 pages.....

    Leave a comment:


  • Cowboy Bob
    replied
    MVC confusing? It's been THE standard methodology for web development going back years. The fact that I have just discovered that not only does it seem to be new to MS, but that it's confusing to supposedly experienced contractors made me seriously go

    What are you people doing? Connecting directly to the DB from a front end script or something equally awful?

    Leave a comment:


  • DimPrawn
    replied
    Originally posted by themistry View Post
    Sound slow, over complex, brittle and inflexible to me?

    TM
    Call yourself a contractor....

    Leave a comment:


  • themistry
    replied
    Originally posted by DimPrawn View Post
    Your idea of PHP front end and ASP.NET web services sounds like a good idea.
    Sound slow, over complex, brittle and inflexible to me?

    TM

    Leave a comment:

Working...
X