Modify Asp Page According To Monitor Resolution.

I created an asp page it looks different when looked from an 1024x768 than it looked on 800x600 resolution. how to control this?

View Replies


ADVERTISEMENT

Modify IE Page Setup

I would like to modify IE page setup before printing the window. But i want to do it without opening the FILE-> Page Setup window. In fact, i would like to remove the header and footer of pages beforeprinting them. but i want to do it using asp or vbscript and without any end user action.

View Replies View Related

Bandwidth Monitor

I have some webspace and have a bandwidth restriction as we all do. I have been trying to create a script that will do the following as I have subdomains/directorys for users other than my self.

When pages load from a subdomain/directory the amount of transfer used is recorded in a text file like a page counter.

every page on this subdomain/directory adds the amount of bandwidth used.

If the bandwidth is exceeded then a message is displayed in plain text saying so.

I would like to have this script work with the folowing amounts.

1gb, 5gb, 10gb of data per month.

View Replies View Related

Performance Monitor

how to display the current connection value on a ASP page. Wanted to know how to read this value into ASP page as opposed to going to performance monitor.

View Replies View Related

Monitor Problem

I have a Mitsubishi Diamond Pro 67TXV and I cant get the screen image right no matter what I adjust on the OSM it has bends or cuves when I hit the reset button it says User timing cannot reset. Does anyone know how to reset this monitor to default screen settings.

View Replies View Related

Monitor Intranet Server Disk Space

We have a process at my work where we use a program (DameWare Utilities) to generate a text file of all of the hard disk space used/free from all of the servers on our network. We then import the text file into an Access database and use an ASP page to view the information.

We are looking to automate this process a little more. Ideally, we would like to make an ASP page that will retrieve all of the disk information from the servers, and save it to a database. The problem is that we can't seem to be able to connect to drives on other computers, even by mapping them.

View Replies View Related

Resolution

While coding in VBA,I had been receiving script errors when attempting to utilize the online help from within the VBA IDE.
After fiddling with security settings and much searching for KB Articles as well as Googling newsgroups archives all to no avail, I finally discovered the resolution to this issue.

From within Internet Explorer, under "Tools" and "Internet Options" and "General", run the "Delete Files" under the "Temporary Internet Files" section.

For those of you who have ever experienced the Internet Explorer problem whereby "View" and "Source" does nothing, the above should resolve that issue as well.

View Replies View Related

Get JPG Resolution In ASP

I am using the File System Object to get a list of photo through a specified path :

Dim fso, ffolder, ffile, fc, fproperity, strOut, strPic
Set fso = CreateObject("Scripting.FileSystemObject")
Set ffolder = fso.GetFolder(folderspec)
Set fc = ffolder.Files

For Each ffile in fc
intCount = intCount + 1
strPic = strPhotoPath & ffile.name
Set fproperity = fso.GetFile(strPic)
.....
Next

I can display all photos without any problem, but I cannot get the
resolution(height and width) property of each of the photo. Is there any way
in doing this?

View Replies View Related

Screen Resolution

I'm trying to replace a JavaScript that checks screen resolutions with an ASP dito
I've tried the HTTP_UA_PIXELS (servervariables) but it doesn't seem to work. I haven't found how to do this anywhere and I guess it's simple but please tell me how to do this

View Replies View Related

Screen Resolution

Is it possible to determine a user's screen resolution?

View Replies View Related

Screen Resolution

what i need to do is when someone hits my site, it must detect what that person's screen resolution is and according to that include a specific navigation.

View Replies View Related

Detecting Resolution

I have a page with a pop up window for a 800x600 resolution. But people using a different resolution will not benefit. So is there an asp script to detect what resolution people are using. And by detecting this it will alter the pop up screen size. Get what i mean?

View Replies View Related

Screen Resolution In Global.asa

I use a little asp script to get some site statistics ... essentially logging each session into a database using global.asa.

How do I capture the screen resolution in this setup ?

I know how to get the screen resolution in JavaScript ... but how do I combine javascript and asp within global.asa ? Or is there another way in asp to get the screen resolution ?

View Replies View Related

Screen Resolution Strategy...

I'd like to hear your opinions about screen resolution strategy...

Actually, we have sites which consist a set of pages...

If I decide to use code for detection screen resolution like this:

<script type="text/javascript">
var wid = screen.width; //Get the screen width
var hite = screen.height; //Get the screen height

var qs = "?width="+wid+"&height="+hite; //Create a querystring

self.location.href = "yourASPpage.asp"+qs; //Redirect to the ASP page with the Width and Height as querystring values
</script> Code:

View Replies View Related

Screen Resolution Assign To Asp

I'm retrieving the screen resoltion with javascript code, but i can't assign the correct value to asp. the response.write is displaying zero (0) for screen res., although when i do a document.write in the javascript part, then my screen res. is 1004 ...

View Replies View Related

Auto Adjust Resolution

how to auto adjust resolution of web page so that it gets adjusted on every resolution . like my website gets open perfectly on my pc but when I tried it on some other pc which had changed resolution the web page was very such shifted to left side which was looking bad. how to auto adjust resolution of web page?

View Replies View Related

Onload Resolution Problem

What I'm trying to do is, after a user has been validated, I want the form to load to the appropriate resolution for the user. Code:

View Replies View Related

ASP / VB Or CSS Check Browser Resolution

Can anyone advise the best way for me to check a screen resolution using any of the above technologies, i am creating a dropdown menu which is populated by a database with rollovers and suchlike, and i was planning on using showhide layer function with javascript however when i resize the browser at a certain point the layer get at most 30 pixels to small, which looks bad. Code:

View Replies View Related

Modify Variables

How do I change the text between a carriage return and a colon ":" in a variable?
I am calling a memo field in a recordset and want to change the format of text (colour) between these two points. How can I do it?

View Replies View Related

Modify A Number

I want to erase a line (or modify a number) in a text file throught asp, how do I do that? I have noticed that there are three ways of opening files,

1=ForReading - Open a file for reading. You cannot write to this file.
2=ForWriting - Open a file for writing. (If open an existing file, it deletes everything)
8=ForAppending - Open a file and write to the end of the file.

How can I just skip a few lines and erase a destinated line or maybe change a word in a line. without using an brute force (copy the file back and forth...)?

View Replies View Related

Modify Single Value

I've built an array like this and I've put it into an application:

Code:
If not isArray(Application("utenti"))thenDim online(1,4)online(0,0)=4 online(1,0)=1online(0,1)=5online(1,1)=1online(0,2)=7online(1,2)=1online(0,3)=9 online(1,3)=3online(0,4)=15online(1,4)=3application("utenti")=onlineEnd if
Now is it possible to modify some values in this application-array?For example trying to set the value in position 1,1 equal to 3 I wrote: application("utenti")(1,1)=3
or

Redim Preserve application("utenti")(1,1)
application("utenti")(1,1)=3

View Replies View Related

Modify Files From A Web App

I've developed a web app that generates documents (like word files, opendocument, excel etc) let's the user download it to their computer, edit it, and then upload the modified version, where it would be stored in a database.

I'm trying to find a way to let the user edit the file on-the-fly, and when saving it automatically update the database. That is, I'm looking for a way to automate the download-open-edit-save-upload cycle. Ideally, when clicking on a link, the user would choose to open the file with the apropiate application, and when saving it the database would be updated. So, any ideas?

View Replies View Related

Modify IIS Settings

Does anyone know if there is a way of changing IIS settings using ASP specifically:

"The content where this content should come from" radio button property set on the Virtual Directory Tab (of a VD).

View Replies View Related

Cannot Modify Or Delete...COM+ Admin SDK

I managed to find the problem with my script thanks to jmurray's help. However I am now left with a confusing puzzle and I cannot any information about a workaround.

The error I now get is:
Cannot modify or delete an object that was added using the COM+ Admin SDK

I know now the reason for this is because I changed the 'from' email address in my script. If I put it as 'service@safetouch.com' it works fine. If I change the address to ANYTHING else, I get the above error. Is this something that can be corrected through scripting? If not, any ideas where I should be looking?

View Replies View Related

How Can I MODIFY Excel Database In ASP?

I have a databse in MS Excel which I would like to use it in ASP? I got instruction on how to open and display the Excel databes in ASP, but I cannot make it to modify/add/delete the records.

View Replies View Related

Modify Word Document

any way to modify text content of a word document through ASP?

View Replies View Related

User Modify Database

I'm looking for a code already written if it is possible (as i need to do this soon)I have a database(access) and the users submit data from a asp page and it stores the values. Then it also allows the users to login to the web page using the data (username and password) inserted by the user.

What i want is that when the user logins, to be able to modify the inserted data..Perhaps the user wants to change the e-mail address. I tried doing some search in google but the results were no good.

View Replies View Related

Modify Excel Template (xls Or Xlt)

From the ASP application I am trying to 1) open a template 2) add data to a couple of fields (passed from order.asp to invoice.asp) 3) do a Save As so that the user can save to client.

I have this code working fine for a word document, but I am having touble with the XLT. Any suggestions?

View Replies View Related

Modify A Field Using Pure Sql

I have a program that will need to update a certain table entry repeatedly - so I want the transaction to take place without using up too much time or system resources. I basically want to update the field with the current time i.e. Now(). Let’s assume:
The table is called tblExample. The field is called LastTime.

I could do this very easily using record sets, but I understand that using pure SQL is much faster than using record sets. So, how would I update the field using only SQL?

View Replies View Related

Modify Multiple MDB Table Designs

I've got quite 20 identical MDB files running on an IIS5 server. From time to time I need to go into various tables and add a field or two. It would be great if there were an application out there that could either: sync all MDB designs (and/or data) esignated to match one I've added some fields/tables to OR go into all designated MDBs and create new field(s) or table(s).

I've began writing something like this that right now just does part of (b) but I'd rather find something that is much more slick and complete.

View Replies View Related

Update / Modify A Exisitng Row In The Database

I manage to solve the last problem, but now I've encountered another one. I think there is something wrong with the UPDATE statement in this code. I am using Oracle 8i and Sun One ASP. Code:

View Replies View Related

Modify And Email Existing Excel Document

I have an Excel Template that is filled out in certain senarios. What I want to be able to do is access this existing Excel Template through a webpage, enter nessisary data into the template, and then e-mail these changes to certain people. The original Excel template needs to stay Unfilled out and unmodified once the process is complete. If saving a different copy to e-mail is nessisary that is ok. I have Created the Excel object on the server to be filled with database info from a query, but I'm not sure how to open an current excel document and then email that document onces it is filled out..

View Replies View Related

Need To Modify A Dreamweaver Update Record Script

I need to alter a dremweaver Update Record function but am a bit lost with it. I basically need to take the values from 3 drop downs that let you selct the date (day, month year). I've written a variavble that adds these together to make a date:

JJ_theDate = Request.Form(selectDay) & "-" & Request.Form(selectMonth) & "-" & Request.Form(selectYear)

but have no idea how/where to slot this in with Dreamwevers code (below) that does the SQL update.. Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved