Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 2:06 PM   #1
Mark Parnell
 
Mark Parnell's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Mostly for my own satisfaction, I have put together an ASP version of
brucie's bugs page (http://usenet.alt-html.org/bugs/bugs.php). I
shamelessly stole his images and CSS files, and modified his code. ;-)

For anyone who is interested, it can be found at
http://www.clarkecomputers.com.au/usenet/bugs.asp.

The only thing I was unable to recreate was finding out the dimensions of
the large images, as I can't find an ASP equivalent to the PHP getimagesize
function. (If anyone knows how to do this, I'd be interested to hear it.)
Of course, you could code it in for each image, but that would become very
time-consuming for a large number of images.

While the code may not be as elegant as it could be, it does what it is
supposed to. Feel free to steal it and modify it for your own use if you
want. :-)

--

Mark Parnell
http://www.clarkecomputers.com.au


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 2:06 PM   #2
Geoff Ball
 
Geoff Ball's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Mark Parnell wrote:

[http://usenet.alt-html.org/bugs/bugs.php]

> I shamelessly stole his images and CSS files


> http://www.clarkecomputers.com.au/usenet/bugs.asp.


Your view source is referring to <http://usenet.alt-html.org/bugs/bugs.txt>,
which results in a 404.

Regards,
Geoff

--
http://www.allmyfaqs.com/faq.pl?Geoff_Ball
http://www.allmyfaqs.com/faq.pl?Web_Core_References
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:06 PM   #3
Mark Parnell
 
Mark Parnell's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Geoff Ball wrote:
> Mark Parnell wrote:
>
>> http://www.clarkecomputers.com.au/usenet/bugs.asp.

>
> Your view source is referring to
> <http://usenet.alt-html.org/bugs/bugs.txt>, which results in a 404.
>


Whoops! Fixed that, thanks. :-)

--

Mark Parnell
http://www.clarkecomputers.com.au


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:06 PM   #4
William Tasso
 
William Tasso's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Mark Parnell wrote:
> Mostly for my own satisfaction, I have put together an ASP version of
> brucie's bugs page (http://usenet.alt-html.org/bugs/bugs.php). I
> shamelessly stole his images and CSS files, and modified his code. ;-)
>
> For anyone who is interested, it can be found at
> http://www.clarkecomputers.com.au/usenet/bugs.asp.
>
> The only thing I was unable to recreate was finding out the
> dimensions of the large images, as I can't find an ASP equivalent to
> the PHP getimagesize function. (If anyone knows how to do this, I'd
> be interested to hear it.)


Do you have any image manipulation routines on your server? Most of these
will give you the info you need. I use AspImage but ImageSize will do just
what you want. Both available from http://www.serverobjects.com

--
William Tasso - http://www.WilliamTasso.com


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:06 PM   #5
Mark Parnell
 
Mark Parnell's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

William Tasso wrote:
> Mark Parnell wrote:
>>
>> finding out the
>> dimensions of the large images

>
> Do you have any image manipulation routines on your server? Most of
> these will give you the info you need. I use AspImage but ImageSize
> will do just what you want. Both available from
> http://www.serverobjects.com


Not that I am aware of - will have to check with our web host.

Will check ImageSize out for local use though, thanks.

--

Mark Parnell
http://www.clarkecomputers.com.au


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:06 PM   #6
Leif K-Brooks
 
Leif K-Brooks's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Mark Parnell wrote:
> Mostly for my own satisfaction, I have put together an ASP version of
> brucie's bugs page (http://usenet.alt-html.org/bugs/bugs.php). I
> shamelessly stole his images and CSS files, and modified his code. ;-)
>
> For anyone who is interested, it can be found at
> http://www.clarkecomputers.com.au/usenet/bugs.asp.
>
> The only thing I was unable to recreate was finding out the dimensions of
> the large images, as I can't find an ASP equivalent to the PHP getimagesize
> function. (If anyone knows how to do this, I'd be interested to hear it.)
> Of course, you could code it in for each image, but that would become very
> time-consuming for a large number of images.
>
> While the code may not be as elegant as it could be, it does what it is
> supposed to. Feel free to steal it and modify it for your own use if you
> want. :-)


Why on earth to do want to port a script from a good language to an evil
one?!


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:07 PM   #7
William Tasso
 
William Tasso's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

Leif K-Brooks wrote:
> Mark Parnell wrote:
>> Mostly for my own satisfaction, I have put together an ASP version of

> ...
> Why on earth to do want to port a script from a good language to an
> evil one?!


Haven't you got anything better to do?

--
William Tasso - http://www.WilliamTasso.com


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:07 PM   #8
brucie
 
brucie's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

In post <3f04eef2$0$22139@echo-01.iinet.net.au>
Mark Parnell said...

> Mostly for my own satisfaction, I have put together an ASP version of
> brucie's bugs page (http://usenet.alt-html.org/bugs/bugs.php). I
> shamelessly stole his images and CSS files, and modified his code. ;-)


i know where you live

> For anyone who is interested, it can be found at
> http://www.clarkecomputers.com.au/usenet/bugs.asp.


you're not returning a 304 if i request the same page again so i
retrieve the page from cache. it makes it resource hungry and slower.

when the style is 0 your URI is ... 'style=' rather then 'style=0'
same with the bug variable when changing styles (which point to my
pages).

whats with the cookie?

try this one: http://usenet.alt-html.org/butterflies/


--
brucie a. blackford. 04/July/2003 05:53:38 pm kilo.
http://loser.brucies.com/
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:07 PM   #9
Leif K-Brooks
 
Leif K-Brooks's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default brucie's bugs in ASP

William Tasso wrote:
> Haven't you got anything better to do?

Doesn't Mark have anything better to do than support the M$ monopoly?


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Bugs in Nintendo games Mydu The Games 0 06-26-2007 1:21 AM
Vista bugs revive XP Spam away Windows 0 05-29-2007 12:49 AM
cvs: pearweb /public_html/bugs bug.php Greg Beaver Pear 0 05-27-2007 7:47 PM
cvs: pearweb /include/bugs pear-bug-accountrequest.php /public_html/bugs bug.php patch-add.php report.php Greg Beaver Pear 0 05-27-2007 7:47 PM
cvs: pearweb /public_html/bugs/rss bug.php Mark Wiesemann Pear 0 05-20-2007 7:42 PM


Featured Websites




All times are GMT +1. The time now is 6:18 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98