Problem Using (windows-ASP) websites

Please Help!
I am a new MAC user. I have been trying to access (and post listings) to an ASP (Windows) site. Their listing page doesn't allow me to type, and it doesn't recognize my fonts. I was told by the program developer of the site that I need to go to Apple.com and download something called V3 (so I can communicate with ASP). I have looked everywhere on the site and can't figure it out. Can anyone please help?
powerbook g4   Mac OS X (10.4.1)  

Hi, thank you for the response.
I am trying to post items for sale at:
http://bidhound.com
Everything is OK until I get to the description. The site doesn't accept anyhting I type. It works fine from a PC. I can use Classic (Internet Explorer 5 - which came with my PowerBook, but I have to use html. And...as you know, IE 5 is SO horribly outdated and it is difficult to look at. Any other suggestions?

Similar Messages

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Problems using windows media player to transfer files to zen x

    All 9gs of my music is stored in windows media player music library.transferring it to zen xtra has caused many cds arriving at player with wrong content under different artists and some songs copied many times over. Is there a known conflict using windows player and zen xtra?I would use mediasource but my cds imported to ther interface with many not identified even thogh all my music was clearly labeled with artist, title and gnere in windows music library.Any help would be great. I cant get my 9gs of music into the zen without content mess u
    ps.
    thanks matt

    I, for one, am incredibly dissapointed in the portable file aspect of this player. i work in a PC store and we sell the Zen Touch , i also received one for christmas. At first i was very happy that i could also use it to carry my files to and from school but all my hopes were extinguished when i realized that the computers i would transfering to and from had to have the creative software installed. Obviously, Creative's target consumers are of the Student generation, so they must have known that we, as students , use computer labs in school. So why not add the firmware to override the creative software when transfering data files? What's written on the box and the sales pitch creative uses is extreamly misguided and alot of the buyers have come back to the store with complaints. They arn't happy, i'm not happy, creative should fix this porblem, and yes it is a problem and not "part of the design".

  • Problem using Windows Media Player 10 to put music on my Muvo V

    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish

    Eilish wrote:
    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish
    Thanks for that piece of information. Player is definitely working as I have about 20 songs on it through realplayer.
    Put a folder of new songs on desktop and a shortcut to my Muvo V200 but when I try to drag and drop it won't let me. All songs on the Muvo are in the root folder. Am I doing it the proper way? I'm afraid I'm a bit moronic when it comes to computers so if you can be patient perhaps you might like to send it again to me idiot speak.
    Really appreciate it
    Eilish

  • Ms-6309 v1.0: USB problem using Windows XP

    Hello!
    I have CELERON 950 with msi ms-6309 v1.0 motherboard. Bios version: 1.9.
    I'm using Windows XP. I cann't plugin any USB device such as mouse or flash drive, because while plugining operation system is freezing. I cann't do
    nothing. The only way is to reset by button.  
    How to solve this
    problem?
    Thank you!

    Installation of the following drivers and updates has not solved a problem:
    SP1 for Windows XP
    VIA 4-in-1 from http://www.viaarena.com
    USB 1.10 Filter Patch from http://www.viaarena.com
    spec of the machine:
    Motherboard: msi ms-6309 v1.0
    cpu: celeron 950 MHz (bios tetect  as 1GHz)
    memory: 320mb
    video: ATI Radeon 9000 Pro
    Bios version: 1.9
    OS: Windows XP RUSSIAN
    If device plugged  before loading system - the device works normally (i can work with my flash drive).
    With Windows 98, Windows 2000 - USB works normally.

  • Problem using Chase Bank website only...super slow...why?

    My speeds are superquick on all websites except for Chase online banking. It is barely even functional. I checked with Chase and they said they have had similar reports but that it must be with the browser. This is probably true since it works fine on my phone and at work.

    There definitely seems to be a conflict with the Chase website and one of the Firefox extensions, add-ons or plugins. I'd been having the same problem with lag while using the Chase site, so I had switched to Chrome when I wanted to access to my accounts. That is, until this afternoon when I cleared my cache and history in Chrome and subsequently went to Chase where I was confronted with a user authentication request. Not wanting to deal with an extra hassle, I decided to try it in Firefox to see if the problem might have been fixed since I last tried. Nope. Same terrible lag. After a little research, I discovered another thread on this issue that suggested using Firefox safe mode (not to be confused with using Firefox while WINDOWS is in safe mode...). Bingo. Logging in to Chase was suddenly about as troublefree as it is when using Chrome. Of course I don't know WHICH add-on or extension is the culprit and I'm really not feeling ambitious enough to check them one by one right now, but at least I know that I can access Chase successfully through safe mode when I need to.

  • Problem using window.showModalDialog in  Internet Explorer7

    hi,
    can any one tell me the issues related with <b>window.showModalDialog</b> and Internet Explore 7 as i am getting error when i am trying to log out a page where i am using ShowModalDialog
    Thanks

    Hi Abhai,
    Please find the reg file searching "ie6sp2" in google. Download  and apply it on your computer and  then try to see <b>window.showModalDialog</b> .I think reg file should fix your problem.
    Regards,

  • Scanner problems using windows 8 and canon pixma mx432. printer is set up but wont scan

    I have my printer installed on my computer already but the scanning function is not even coming up to be able to use it. I recently was given a new computer and it has windows 8 on it. it took a lot to get it to even be installed on the computer but the scanner portion won't work. When I bring it up it has the section where the scanner should be but nothing is there to push. What can I do to get this function working correctly?

    All the drivers for 4350D and MF4690 and a few more models I owned in a few more offices have the scanner bug in the drivers for Windows 8. No new drivers been released to fix the problem all those scanners I owned have. Now Canon just put the Windows 8_Notice_ENG inside the driver package and includes the [Limitations During Operation] that says:
    When using the scan function while the device is connected to a computer by USB, removing the USB cable and then
    plugging it back in or turning the device off and then on will cause the scanning function to be unable to execute. If this
    occurs, please restart the computer.
    Seriously, Canon? Restart the computer everytime it doesn't work, and I have to go through the hazzle saving all the files I am working on just to restart to get the scanner to work? I have tried to mod the newer drivers for MF4770n and a few new models to make it work with those 4350D 4690 models, it will then detect the scanner without restart, but the scanner won't produce a readale image using my modified drivers. Now stick with VM Player running Windows 7 to scan the files with those old scanners. I won't buy another Canon scanners for my future needs if Canon just can't fix the Windows 8 driver problems all those scanners I owned.

  • Elements 7 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • Correction - Elements 12 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.
    Apologies for the error in the title of the previous attempt!

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • When I attempt to download a Adobe PDF document I get a plackard saying "There was an error processing a page. There was a problem reading this document (109)." I don't have the problem using Windows Explorer. Can you help?

    I don't have any details other than what I have explained in the question. Have always been able to download Adobe files in the past. Tried Windows Explorer and it worked. Don't like Windows Explorer.

    Using FF 5.0.
    I've encountered this opening the following file:
    * http://download.esha.com/fandc/error/sqlfc.pdf
    The error occurred the first time I tried to open, but subsequent times it has opened fine. A co-worker gets the error everytime when trying to view in his FF 5.0. It has always opened fine in IE for both of us (like the OP meant, I think -- I don't like IE. Not even a little bit!).
    Downloading the file seems fine (opening in Acrobat Reader itself).

  • Nokia Lumia 530 backup problem (Using Windows 8.1)

    My phone has suddenly stopped backing up, even though it keeps telling me it hasn't been backed up for some time, and needs to be backed up. When I tell it to back up, it gets to about 99%, and then I get the message "there was a problem backing up your settings. Try again later."  What exactly does "later" mean? I've been trying at various times of the day every day for about 4-5 weeks now. From what I've read on the internet, this does appear to be quite a widespread problem.
    Other things I have tried:
    Turning the phone off and back on again.
    Unchecking the "Apps back up" button
    Uchecking the "Settings back up" button
    Checking both backup buttons again
    Deleting previous back ups using my phone
    Logging into One Drive on my laptop and manually deleting previous backups
    Changing the screen time out on my phone to 15 minutes (as opposed to 1 minute)
    Making sure I have a good phone and wifi signal, and having the phone plugged into the charger
    None of this has had any effect!!!!
    The strange thing is that when I go onto One Drive, it tells me that it did back up (I've only got the one phone, so there's no chance I'm getting confused between phones.)
    Please does anyone have any advice? Also, is there a way of telling my phone to automatically back up at regular intervals, eg once a week, or once a month, so I don't have to keep thinking about it?
    Thank you for reading all this!

    Hi, TulaTheQuang. Have you tried rebooting your phone by pressing the power and volume down keys simultaneously for 10-15 seconds? Also, check if all system apps on your phone are up to date. Go to Settings> applications> store> check for updates. Check if you will be able to successfully backup your files. 
    We'll wait for your response. 

  • Sound Problems using Windows Vista.

    Hello everybody!
    I have a problem with the sound in Windows Vista with my iMac. I install BootCamp Drivers (last version) and the sound system works with this drivers, but, when it's playing music, I always listen to a very strong noise. I don't have any microphone active (actually I desactivate all about input sound in control panel, to considerate where is the problem)
    So, please, Can someone help me?
    Thank you so much...
    Rafa
    Madrid, SPAIN

    Just an idea for you. There is an entire Apple Discussion forum dedicated to Boot Camp and Windows XP & Vista.
    Whereas, not everyone here with an Intel iMac has installed, tried to install or has experience with BC & XP or Vista, everyone there has or at least has an interest. You may attract help more quickly there.
    The Forum is at the bottom of the main Apple Discussions page under Windows Compatible Technology.
    Here is a link;
    Forum: Boot Camp Public Beta

  • PROBLEM USING WINDOW STORE IN WINDOW 8.1

    HI Sir 
         when i open window store and install any app many time a box open and say your current connection is slow
                       and many time it say time out
                                                                    and after this it take a long
    time and show pending app but the app is so small and it take a long time   please solve my problem

    Hi,
    Please try the following method to fix it:
    1. Disable your antivirus software.
    2. reset your Windows store cache:
    Type WSReset.exe into search box, and run it as administrator. Windows Store will openand you’ll get a conformation message saying that:
    The cache for the Store was cleared. You can now browse the Store for apps.
    It will the take you back to Windows Store. Now try to install or update the apps or download fresh apps and see if it’s working like it should.
    Karen Hu
    TechNet Community Support

  • Compile source file problem using Windows ME

    After editing the variable value PATH to,
    c:windows;c:\windows\command;c:\jdk1.3.1\bin and saving file HelloWorldApp.java(from First Cup of Java;Sun tutorial)to c:\java .I proceed with the tutorial but haven't got a clue what command to put after c:\windows> (in the MS-DOS Prompt window I am now at)..in order to view HelloWorldApp.java so that I can compile.(I've tried putting cd as per tutorial but get 'bad command or file name' appearing on the screen).
    Detailed help very much appreciated!!

    If I may ask:
    How new to java are you?
    I remember the feeling well.
    If you have installed the java SDK and set your path, then restarted your machine so that the startup process recognizes your new path.
    ... probably done, since time has gone by...
    Then saved your : something.java file to a directory.
    You start a dos session and navigate to your :
    C:\documents\javaStuff directory where you will see:
    Something.java exists.
    Then you ask the java compiler to compile your code with:
    javac something.java
    which creates something.class
    [look familiar from the first line    class something{  etc.
    then run the program with:
    java something   [ it knows to only run a .class file]
    Is this the level of information which youseek??
    Hope so!
    Remember! Stay in the Puzzle Somehow!

Maybe you are looking for

  • How to load external png image via xml?

    Can anyone help me with adding a png image to a mc with an instance name. I only want to display a single image (no gallery) I would like to get the url for the image via an xml. Here is a copy of my current action script which has already pulled in

  • How to change the system time in (E-Business Suite)

    Hi, I need to change the system timings in E-Business Suite. My Database & Application is on different nodes.. How could i change system timings on both... Thanks, Alig

  • XI - BW to R3

    What is the best way to configure the interface from BW back to SAP. Do I use the ABAP Proxy or use the good old tRFC. Any help is appreciated. Jose Vellaiparambil [email protected]

  • What benefits does the new CMM bring to the table??

    After installing the new Colour Management Module, I now have the new option of 'Adobe CMM' as well as the old 'Adobe ACE' and 'Microsoft ICM' in Photoshop CS3 and other Adobe applications. What benefits does the new CMM bring to the table?? As it is

  • OSX Server 10.3.4 updating?

    I am a Noob at OSX Server. Client currently is running OSX Server 1.3.4 on an older G4. Minimal use, just a few sharepoints, about 10 users. Q: Can I update (it) to 10.3.8 (or 10.3.9, i forget) by using the assumed Software update feature, like in OS