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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Palooka

  1. Palooka

    Accessing a spesific server behind loadbalancer, WebSEAL

    I'm trying to get a grip on how the setup here is, and how to access a specific server. I am currently at a new project and have been told that WebSeal is used as both an access manager and a load balancer. When I acces this application, Webseal will forward me to one of two available...
  2. Palooka

    How to *easily* import multiple DTS packages?

    I look forward to give it a try later today. I'm exited to see if it will work with a 2005 database installation. Wether or not it works with 2005, I will still keep it for future jobs. This tool looks excellent. Thanks for a great tip. -- Kjetil Myhre http://www.kmyhre.com...
  3. Palooka

    How to *easily* import multiple DTS packages?

    I previously posted this question in MS SQL Server: Programming, but I guess this is actually the right place. I am currently upgrading a system from SQL Server 2000 to 2005. At this time migrating from DTS to SSIS is not an option. Thanks to Nigel Rivett and his excellent...
  4. Palooka

    How to import multiple DTS packages?

    I am currently upgrading a system from SQL Server 2000 to 2005. At this time migrating from DTS to SSIS is not an option. Thanks to Nigel Rivett and his excellent Save-all-DTS-packages-to-files-script I now have all my 63 DTS packages saved as .DTS-files. Now I am looking for an easy way to...
  5. Palooka

    Move code to web.config

    Hi, I currently have a class that extends from System.Web.Services.Protocols.SoapHttpClientProtocol where I set the Timeout property: public class foobar : System.Web.Services.Protocols.SoapHttpClientProtocol { public foobar() { this.Timeout = 10000; } ... } I would really like to...
  6. Palooka

    Error 403 Forbidden Access Pls advise what I must do

    My guess is that you just have a directory in the URL when this error occurs, like http://localhost/test/ IIS needs to be told (configured) what pages should be recognized as 'loaded automatically' when no file name are specified in the url. I don't remember the out-of-the-box settings, but I...
  7. Palooka

    Passing and receiving variables

    That was neat! What if you wanted that popup to have an &quot;Add book&quot; function instead, and then add that book into a <OPTION VALUE='BOOKNAME'> in an existing <SELECT> on the parent page. Is that also possible without reloading the parent page? Palooka
  8. Palooka

    Intercept Timeout Errors

    You can also use standard ASP error-trapping, like: On Error Goto ErrorHandler Call Query_subroutine On Error Goto 0 (On Error Goto 0 disables the errorhandling (=back to normal)). Then, in you error-handling code, you can check for the error number for that specific error: :ErrorHandler...
  9. Palooka

    simple ASP code needed to display &amp; not display

    If you want to the server to display the index.htm file autmatically, you can also add it in IIS. In IIS, right-click on the Default Web Site (or appropriate) and select Properties. Then enter the Documents tab, and add filenames you want the server to support, such as: default.asp...
  10. Palooka

    For the Love of God...

    Like this: for x = 1 to Request.Form.Count Response.Write &quot;Control#&quot; & x & &quot;<br>&quot; Response.Write &quot;Name : &quot; & Request.Form.Key(x) & &quot;<br>&quot; Response.Write &quot;Value: &quot; & Request.Form.Item(x) & &quot;<br><br>&quot; next Palooka
  11. Palooka

    IE won't refresh asp page

    You probably want to add this to your code: Response.Expires = 0 You can also insert thedatetime of your last update of the page, so the browser will request the page anew from the server: Response.AddHeader &quot;Last-modified&quot;,&quot;Sat, 01 Mar 2003 10:00:00 GMT&quot; That should do the...
  12. Palooka

    ASP and Stored procedure

    You could do it like this, for instance: Set db = Server.CreateObject(&quot;ADODB.Connection&quot;) Set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;) db.Open DSN, USER, PWD Set rs = db.Execute(&quot;sp_myStoredProcedure&quot;) Palooka
  13. Palooka

    ADO resultset returns an EOF when called from a proc in ASP

    Well, I notice that you use identical names for you variables, both global ones and the ones in your sub. (AdoConn, adrsICD, etc.) It might be some kind of problems regarding the scope. Also, remember that if you convert your container array into a delimitered string, you could make your code...
  14. Palooka

    ADO resultset returns an EOF when called from a proc in ASP

    If you use the same recordset, you have to reset the position to the beginning; recordset.MoveFirst() Palooka
  15. Palooka

    How to open .doc (MS WORD) file in the browser?

    To have the word document appearing directly in the browser is not possible from the from asp, as this is a rule based on the client settings only. It is done this way for security reasons. To do this manually, launch Windows Explorer, select Tools, Folder Options, the File types tab, select the...

Part and Inventory Search

Back
Top