Auto Resize Web Page
Has anyone developed a web page that automatically senses the screen resolution of the incoming browser and dynamically resizes content accordingly? For instance, an 800x600 resolution user might see 3 columns of product thumbnail images, whereas a 1024x768 user would see 4 columns. Of course, the thumbs are data-driven. Is this possible and/or advisable?
View Replies
ADVERTISEMENT
Any code snippet or help link available on how to auto resize the dropdown list part of the combo(<select>) ?
Or, is there any alternative techniques for displaying the full lenth text when dropdown the combo?
View Replies
View Related
My page have background image,on that image have more images and text. My problem is whenever resize browser that images are not resized and also not moved correct place .(i.e look not like before alignment).I want to do everything in dyanamic....
View Replies
View Related
Is the any way i can refresh a asp page once everytime i click the link to the page or redirect to the page? I want it to refresh once only...
View Replies
View Related
how to run one asp page after html file display ion browser for few seconds.when i click on certain href tag the realted link will open in another frame.. before opening the related link i just wanted to show one or two image so the web page will look styley.
View Replies
View Related
we built a dynamic shopping cart inhouse using ASP and VB SCRIPT. however when it wants to load in (IE only) the page keeps auto refreshing or should i say looping. We have checked the scripts in and out and their are no errors, timeouts, EOF or BOF, or any on error resume next. Is there a reason or way to debug this ? it only loops in IE, as other browsers are fine.
View Replies
View Related
i have an asp website and have an update information page. After i have updated their information, i am unable to see the updated info unless i hit the refresh button. Is there an alternative for the refresh button that will automatically refresh the page?
I have tried the meta tags but they dont work. also i am currently testing the website on my local server. Is there a possibility that this problem will go away once i upload the website on some other server?
View Replies
View Related
ive got an online room bookings system working. However this uses email so someone has to update once they recieve the booking request. Whats the best way to do it so that a user can see when a room is free and book it automatically so the web page when refreshed shows this - ie it cuts out the middle man?
View Replies
View Related
Have an ASP page running on my webserver, how do I code the page to auto-reload itself (without me having to hit the F5 key to refresh) every XX seconds?
View Replies
View Related
How can I auto redirect to the previous page?Anyone an idea?
View Replies
View Related
I would like to know that ,is there any way that the asp page would get refreshed automatically when there is an update in a tbale in SQL Server. The page should get refresh automatically on updates in SQL Server. The user will not hit refresh button neither I want the page to have meta-refresh tag.
View Replies
View Related
I have a clickable graph that resides on page 1. If user clicks a data point
on the graph, the page runs again yeilding a 2nd graph that shows a more
detailed graph.
Problem is, I have a recordset table on the 2nd graph page and because the
user gets to it by clicking the graph, the page doesn't properly post to
render the recordset table. I can click "Refresh" on 2nd page and table
displays fine.
Is there an ASP refresh command that I could possibly run to mimick a
"Refresh" or F5?
View Replies
View Related
I output a list of towns from a database via a normal recordset loop into a normal paragraph with links - BUT for some reason it is totally pushing the page out... is there any reason for this? I also placed trim() on the town name in case there were lots of mistaken spaces, etc. Code:
View Replies
View Related
What is the best image resizing tool is out there? I want to resize images in ASP page when users upload them into some directory.
View Replies
View Related
I need to resize images to a fixed width.
How can I hold the aspect ratio?
View Replies
View Related
I have a page that displays a image from a folder. If the image is over a certain size I want to resize it to a given size, but if the image is smaller than the given size I set I want it to stay the same. Any ideas?
View Replies
View Related
Has anyone managed to get ASP to do an image resize ? I know its possible easily in .NET, or by purchasing a COM object, but my server cant have either of those.
Looking to automatically create a thumbnail when a user uploads an image.
View Replies
View Related
Can someone help me out in resizing the Gif images.
I actually eant to resize the gif image and save in a separate folders.
View Replies
View Related
I need code that simply resize image with same ratio. My server has ASPImage 1.5 component.
View Replies
View Related
i have A page that show List of many field from database and i have frames : Top , Left and Main Page. I think it's tired to see the fiel with horizontal scrolliong too long. I wonder that the left frame can be resize to Left(Close to left) then i can open it again. But I have no idea to doing that.
View Replies
View Related
How can i resize a picture with asp, i mean i store the picture into the database, and when i display it, i just resize it from html, but it does not look good, not focused... basically how can you make a thumbnail..?
View Replies
View Related
I need a pure ASP (no com, or dll objects) solution that not only allows me to upload an image, but also resize it.....
View Replies
View Related
I have an ASP page where I am displaying an image submitted by a user. I don't know the width or height of the image - they are variable. However, when I display the image, I want to shrink it to a particular size if it is wider than one of my page elements (say, 130 pixels).
I need to detect the width of the image and then display it with a WIDTH attribute if it is wider than 130 pixels. Anyone know a way to do this with ASP, without using a 3rd party component? If not, know how to do it with Javascript?
View Replies
View Related
I have problem with resizing a picture and don't know what the problem with the following code:
dim fs
dim sourcefile
sourcefile = uploadsDirVar & filename
set fs=Server.CreateObject("Scripting.FileSystemObject")
'to access the data of the image
dim iwidth, iHeight
dim myImg
if fs.fileExists(sourcefile) then
set myImg = loadpicture(sourcefile)
iwidth = round(myImg.width / 26.4583)
iHeight = round(myImg.height / 26.4583)
if (iwidth > 250) then
iHeight = (iHeight * 250)/iwidth
iwidth = 250
end if
If (myImg.Width > iwidth) or (myImg.Height > iHeight) Then
If (myImg.Width / iwidth) > (myImg.Height / iHeight) Then
myImg.Resize iwidth, 0
Else
myImg.Resize 0, iHeight
End If
End If
myImg.WriteFile sourcefile
set myImg = nothing
end if
set fs=nothing
when i run it, the following error occur :
Object doesn't support this property or method: 'myImg.Resize'
View Replies
View Related
I need help to do a upload image with image resizing (for the thumbnail view). our hosting provider supports file SoftArtisans upload component. How can I do the my task
View Replies
View Related
I have a web page which'll allow a user upload some pictures. Problem is, different users have different sizes of pictures. I was wondering if there was a way to resize the picture just before it is saved on the server? If not, then is there a way of resizing it just when i'm about to display it?
I googled around a bit but all i got were sites which had components that would help me do just that. I don't want to use components cos my host won't allow me use any external components, just want to use pure ASP (or maybe js).
View Replies
View Related
I am trying to resize images without componts in ASP, but I couldent find anything that can do that.
View Replies
View Related
I have a Windows 2000 server. My ASP application allows users to upload a photo for display to other users. Unfortunately everyones photos are different sizes. I'd like to resize the photo to 150px wide while maintaining the aspect ratio of the photo.
Is there anything built into IIS/ASP that will allow me to do this? If not, is there a free DLL, etc. that I can add to the server?
View Replies
View Related
Is anyone having problems with formatting text using the ASPPDF component? I am having problems when it fills in the pdf form from data entered through a form. For some reason it doesn't allow me to format the text or resize it...
View Replies
View Related
I have a popup window that is used to display text from a database. Some times it can be a few words, sometimes it can be a hundred words. What I would like to do is resize the popup window to fit the text. Well actually it is just the height that needs to be resized. I have set the width to 600. I have put the text in a table and I was thinking
I could set the height of the window to be the height of the table plus some for room. I don't know if that is possible.
At first I tried to count the number of lines and multiple by a factor by that doesn't work so nicely because I was getting the number of lines by dividing the number of charaters by the maximum number of characters in a line.
View Replies
View Related
My host offers the 'Persists ASP-Upload' component, but not the 'ASP-Jpeg' component. I can therefore allow users to upload images which can then be saved on the server.
What I need to do however, is resize their images before they are saved, so that their pixel dimensions are correct. Is there a way to do this without having the ASP-Jpeg (or similar) component installed on the server?
View Replies
View Related
i have a page with top frame (html) and bottom frame (asp)the top frame come with choices and then submit value to bottom asp page by submit button.how can i do it if i wish the bottom asp to run automatically in specific value when the html is loaded.then the user can change the choices after.
View Replies
View Related
Is it possible in ASP to have an Auto Fill option? For instance, if I am typing in a name and I type in the first few characters, can ASP recognize a similar name in the database and begin filling in the rest of a possible match?
View Replies
View Related