Has anoyone ever tried to create an asp page that displays images that
either displays them as a slideshow or on a long webpage?
I have an html page that displays my pictures, but as there are many of
them which are large and my bandwidth is restricted I want to download
them and display them one at a time. Currently it the client tries to
download them all at the same time, or four at a time. This slows down
the downloads to an unbearable rate.
Is there a component that allows you detect when an image has been
downloaded and then allow a trigger to start downloading the next one?
does anyone know any script I can use to achieve the following:
I have several pictures (many hundreds) that I would like to display on my homepage - a new one each day. I have tried several scripts but many of them only allow for 7 images (one for each day of the week) or one for every day in a month.
Are there any scripts that will just accept a long list of images and display the next one on the list until it gets to the end and begins again?
What I am trying to do is to develop a dhtml based chat system. So far everything is working as planned, took me over 6 hours to get it working, but I am pleased with the results, it is comparable to java chat. With no page refresh. My problem is How do we manage which users are online on chat and which are not. I do not wish to use any application variables nor do i wish to use session variables. i am trying to avoid the 2 Either the user may simply close the chat window, or he might just go and browse another site. Either way I do not get to write the even to the database.
I have been asked to create a contact form for a website in ASP that will mail off the form data to a e-mail address but also log the e-mail data in a database. They then want a web page on-line that they can view all the e-mails in (not a e-mail client, just a html view of each one).Now i have two issues with this, 1. i have never coded in ASP in my life, (php yes, lots) and 2. i dont see the point in being able to view them online when they will have the e-mail in their desktop mail client.Does anyone know of a script that will do what i'm after that is free and uses MSAccess not SQL Server?It's a big ask, but if there was something a bit like it i could have a go at modifying it.
Could anyone tell me what big corporations do for link management? For my site, whenever I want to change a URL, I don't want to because I know there are 10 pages with that link...
But, right now I'm doing a redesign and will be editing every page, so I thought I'd better find out if there's an efficient way to manage my links...
My first thought was to create a page which I include in every page, and this page has all the links for diff pages, like so:
Is there any differenc ein the way ASP handles the Session management in Windows 2000 server with IIS 5.0 and 2003 Server with IIS 6.0?
Did anything changed with respect to the Cookie Management?
My code works well in 2000 with IIS5.0 and if I changed my deployment environment to Windows 20003 with IIS 6.0, Cookie management is not consistent and I am not able to maintain the sessions at some places.
I am looking for some type of way to allow a client to update their web site. The thing is, I do not want them to be able to format the text in anyway. All I want them to be able to do is just type the text that they want....no formatting by them allowed at all.
Is there a program already made that would allow me to do this?If not what would be the best way to approach this?
Is there any way a Form can be made automatically not retain its field values after it has been succcessfully posted in classical ASP. Something like the way ASP.Net can perform state management in postbacks automatically.
I am developing a Simple ASP Application with a Login page. I want to know how session ID can be generated after User has authenticated instead of generation along with the Login page request.
Also Session ID must be unique each time the user logs in. This is required so that Session Hijacking and Session Fixation could be prevented. Should I have to use other process instead of General ASP Session Management.
I want to know how to write a code to get related articles which have posted in a cms system, in other way I want get related articles with one which I have posted in my database like some thing in Vbulletin forum system, it under each pages has a section named related topics and show related articles about opened topic.
Is there an article out there on dealing with content management systems and how to replace characters (i.e. an apostrophe in a content management system can't be put directly into a DB column, likewise paragraphs have to have the html code in them to work).
I have seen on many websites the use of some sort of program to generate a random character string distorted and warped with lines making the resulting graphic ideally only human readable.
The theory is to prevent automated login programs.
I don't know what they call this type of component so I really don't know how to google it. Do you know any source for this type of thing?
i describe just my hole problem in the title I want to uploade a picture from a computer in to an access database on server, and even know, that I have to use "FiletoField" but don't know, how have I use this? and didn't see any example codes, which I understood. I use for my codes "aspsmartupload"
I would like to put a picture on may page and I would like to use this picture as a button to execute an sql query, so when you clik on the picture you will hace displayed in the next page the product in the data base and other info like price for example. I have this code to access the data base but I do not know how to use a picture s a buton to use it. Code:
I need to add a ppicture to my Database.. The table is accessed through ASP Recordset but having troubles trying to insert an individual picture to each record?
i would like to know where i could find a picture viewer that has a data base and shows thumbnails and when a user clicks on it the picture opens up bigger for the user.
Currently I have a webpage that pulls information from a database. The records are all true/false. Right now I just use the response.write function to display my recordset.
I am looking to do the following, but am unsure how too:
If recordset = ("true") then display check.jpg <----- I am unsure on how to display a .jpg end if
if recordset = ("false") then display x.jpg <----- I am unsure on how to display a .jpg end if
I want to display a picture if there is no information in the record, if the record contains info I wish to display that information. The code so far: Code:
<% If rsdvd("stock") = "" then Response.Write ('" & <img src="images/out.gif"> & "') Response.End ELSE Response.Write (rsdvd("stock")) END IF %>
I wanna do an ASP page , which will find out the Image size of a link. lets say someone gives a link to an Image. just for example, I want to get the Image Size (Height and Width) How to do that?
I have a piece of javacode that i found that is a hit counter. At the momment when i run the page i see a small box with the red cross-picture can't be found. Does anybody know how i can add a picture to this piece of code please? Code:
we are having a form where i can add products to my cart. so the user here can go on to no of pages giving details like no of products . i am using cookies for mantaining the session information like no of productds, product name, item price etc. now after all these process a page will apear where there wil be a button called "Pay Now". When the user clicks this button i should be able to clear all the cookies that are stored in the client side....