It’s not formally anounced yet but Firefox 1.5 is now available
Enjoy.
It’s not formally anounced yet but Firefox 1.5 is now available
Enjoy.
This is the first video I’ve seen for the $100 laptop. It does look really cool, check it out here – Andy Carvin’s Waste of Bandwidth: The $100 Laptop: An Up-Close Look
Not sure when it was released but I ordered the new Humax PVR-9200t as soon as I saw it was available. Now, I’ve been really impressed with my 8000t and looking forward to this new version but I have to say there are good things and bad things. I wont bother with quoting standard features as good things, just additionals that I/you wouldn’t necessarily know.
Firstly the good things -
Next the bad things -
More to follow I suspect but I haven’t had a full play with it yet.
One last thing… I’ve now got about 60GB of programmes on my 8000t with no apparent way of getting it onto my 9200t, bummer
Now this is annoying me, I’m trying to take an existing classic ASP solution and convert it to ASP.Net 2.0 as a learning exercise. The problem is that I’m struggling to convert this -
<head>
<title>A Page</title>
<% if intCategoryID < 3 then %>
<script language="javaScript"
src="http://www.foo.com/foo.js"></script>
<% end if %>
</head>
So, I want to only include the JavaScript if a condition is met (in this case intCategoryID < 3). How do I achieve this in ASP.Net?? I have looked at an asp:literal tag to achieve this but Visual Web Developer suggests a literal cannot include child tags (the script tag itself). Can I add one programmatically from the codebehind?
I hope I can find a solution to this..