Search results

  1. L

    Source Code

    As you're reading this, right click on the page and select "View Source Code". A text editor will open up and you'll see the source code. In the most basic terms, source code is the code that makes up the application/web page. It's the code the developer/programmer writes to make the program...
  2. L

    Which is best Asp.net, Php, Sharepoint?

    I would agree with the guy you spoke to, I would use asp.NET. You could also use classic asp, I suppose, but asp.NET is faster and more secure. Basically it depends on personal preference. But if you want an objective and unbiased answer, search for feature comparisons between the three...
  3. L

    Web design ecommerce question?

    As aidanodr said, it's difficult to answer without knowing if you're using an open source app or writing your own tools to accomplish the task, you also don't mention what technologies you're using (if you're creating your own system). Assuming you're going 100% custom, I can tell you that...
  4. L

    ASP - Alternating table row colours

    <% While Not rsTest.EOF Field1 = rsTest.Fields("Field1") rsTest.MoveNext %> <tr> <td style="background-color: #00ff00;"><%=Field1%></td> </tr> <% Wend %> For those of you who don't know, all this code is doing is repeating the table row once for every...
  5. L

    Scaling graphics and pages to user resolution

    I've been designing a data-driven website to fit perfectly on a screen resolution of 1280x1024 (the res I'm using). Although it might just be easier to ignore the different resolutions possible and inform my users "This is best viewed at a screen resolution bla, bla, bla", I'd much rather do it...
Top