Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Posts posted by aspnetguy

  1. I like PHP too but it can't beat the logic and presentation seperation that ASp.Net offers.Why does it look ugly to you? C# is based on C/Java (PHP is based on C) or you can use VB plus it offers and always has offered superior OOP.I do agree however that ASP is horrible...it is a waste of time for anyone new to learn it, IMO.

  2. That is crazy. Until just a few months ago IE6 represented 80% of users. Were you telling your clients that?So you ignore Google (50% of searchs) you ignore IE6(50% of users), plus ignore standards all together, you have eliminated a lot of your possible user base before you even get started. How do you consider that a good thing?

  3. I'm hoping to get hired. After submitting my application I was told it would be a month before I hear anything. This is a permanent position so it would be awesome to get it.

  4. sweet.yeah I am waiting for the bug fixes, etc before I even consider it.You work for the gov in Quebec right?How long did it take before you heard form them after you applied? What was the interview process like?I just applied for a gov position here in NS on the local military base. Couldn't believe the salary (double what I make now) for managing ASP and Access apps. :)

  5. Js can only access the inline css of an elem. So the global css you declared on your page cannot be seen or acessed by JS.you could access the <style> tag though and parse it with JS if you really wanted to knwo the values but ti would be much slower.

  6. absolute is no worse than any other CSS attribute that doesn't render the same in all browsers. When floating divs margins and paddings add up differently in different browsers. Should we stop using float?That is why conditional comments exist. So you can adjuast things for IE.I use relative positioning 99% of the time when using position. I personally don't like absolute positioning but when used correctly it can be very useful.

  7. first I'll point out that using <font> is a bad idea and is depreciated along time ago.here is how you do it

    var elem = document.getElementById("title02");elem.className = "default";

×
×
  • Create New...