Does anyone know where I can find a million dollar homepage script that works with
ASP.NET? All I've come across so far are PHP implementations and nothing for the .NET crowd.
Thanks.
> Does anyone know where I can find a million dollar homepage script that
> works with ASP.NET? All I've come across so far are PHP implementations
> and nothing for the .NET crowd.
Response.Write("$1,000,000");
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
But seriously, is there such a script for use with ASP.NET?
Save time by converting it from PHP by yourself. I don't think that
there is a lot of code
I don't understand your question, but perhaps you want something like
http://n2cms.com/ ?
I may underestimate the task but basically the tag map should be enough :
http://www.w3schools.com/TAGS/tag_map.asp (which can be generared using
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.imagemap(VS.80).aspx
in ASP.NET).
Then you'll likely have a db to store those hotspots and perhaps some tolls
to split the image into multiple chunks...
--
Patrice
"Roshawn" <radaw...@yahoo.com> a écrit dans le message de
news:u6ODNu7x...@TK2MSFTNGP04.phx.gbl...
Yeah, I've saw it, it was pretty good idea at that time ;-)
However, where do you see any need of over 100 PHP files there? You
*maybe* need the one to add new image and *maybe* one for the very
fist page. That's all. To make a 2-pages application should not be a
big problem. All what you need is to
1) upload form to upload new image and keep its url (for example in
the database)
2) display form with all images and urls from the database
Thanks Alexey. I didn't know that I the entire thing could be reduced to a 2-page
application. I guess the number of files convinced me otherwise.
In a previous reply, someone told me about the .NET ImageMap class and various HotSpot
classes. Perhaps I can leverage those to create what I want.
Thanks again. :-)
Hmm, I wasn't even aware that the .NET Framework included an ImageMap class. Nice catch.
Thank you. :-)
Well I think there are few ways to do this. You just need to decide
which one is the best. If I were you I would probably load the "grid"
as a background picture and show small pictures above. This would not
require any special server controls.
Great suggestion. Thanks!