Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Enya
  • Order by date
  1. Enya

    MS Query and Excel problem

    No, it's not a security issue. I can use that ODBC connection in other workbooks. I don't get a sql server prompt because we use Win NT authentication to connect to our servers. Yes, the ODBC connection is set up in the admin tools/data sources.
  2. Enya

    Problem opening Excel spreadsheet.

    Sounds like you have a corrupt file on your hands. Have you tried renaming it and then opening it? PS I assume you meant the PC in question is running with 512 MB of memory, not KB?
  3. Enya

    MS Query and Excel problem

    Hi, I have an Excel workbook that has several MS Queries that retrieve data from a Microsoft SQL server, via ODBC connection. We recently changed the server that my database resides on, so I updated my ODBC connection with the new server name. Fine, no problems there. Now when I try to...
  4. Enya

    Downloading a File to the Clients Browser

    My servlet reads the data (in bytes) from a file....I want to download this data onto the clients browser. How can I do this?? Code so far: ----------- File f = new File(FileName); try { FileInputStream fis = new FileInputStream(f); BufferedInputStream bis = new...
  5. Enya

    Opening a New Browser Window

    When I click on a link - it should open a new browser window. How can I do this?? Thanx for the help.
  6. Enya

    URL Rewriting

    I have a url: http://localhost:8080/servlet/myfile.zip I want to rewrite it to get: http://localhost:8080/servlet?filename=myfile.zip I found some url rewriting articles over the web, but nothing clearly explains the process. Could anyone just give me a brief/clear explanation of the concept...
  7. Enya

    Splitting the URL

    Thanx 'dustyfido'!! I have one more question - very similar to the above one. If I had a URL say: http://www.me.com/download/sw? How would I split the strings between '/ /'?? To get: www.me.com download sw I've been programming in ASP for a while and relatively very new to Java...
  8. Enya

    Splitting the URL

    How can I split a URL (QueryString) obtained off a browser?? Could anyone please suggest solutions. Thanks in advance.
  9. Enya

    Retrieving data, please wait....??

    How would I 'display a message' like Retrieving data, please wait, on an ASP page before looping through a recordset. Thus giving the user some feedback on what is going on in the background, rather than looking at an empty page, till the entire looping finishes?? Thanks in advance.
  10. Enya

    HTTPS to HTTP??

    I have set the content type for excel format. But somehow the https/http is making a big bad difference. The browser ends up listing all the data (comma separated) on itself, instead of excel worksheet.
  11. Enya

    HTTPS to HTTP??

    The ASP page is supposed to download a .csv file (open Excel). But the file ends up being displayed on the browser (literally comma separated and all) - doesnt open excel and put the data in there.
  12. Enya

    HTTPS to HTTP

    In the first ASP page (https://......) I have a link, which when clicked, initiates download of a file. If the download file is (http://......) - I get a security alert. But if I use (https://.....) as the download file - the downloaded file is not in the correct format. Is there a workaround...
  13. Enya

    HTTPS to HTTP??

    In the first ASP page (https://......) I have a link, which when clicked, initiates download of a file. If the download file is (http://......) - I get a security alert. But if I use (https://.....) as the download file - the downloaded file is not in the correct format. Is there a workaround...
  14. Enya

    How to Create Excel Files that do not reside on Web Server??

    I have already generated an Excel file from an ASP page. But this file resides on the web server. I dont want this file to reside on the web server. Can anyone help me with any suggestions?? Thanks in advance.
  15. Enya

    Looping through large recordsets

    I have already set my Server.ScriptTimeout = 1200. My ASP page is timing out inspite of setting it to this value.
  16. Enya

    Looping through large recordsets

    My ASP page keeps timing out, when attempting to loop through very large recordsets. Any suggestion to solve my problem would be greatly appreciated. Thanks in advance.

Part and Inventory Search

Back
Top