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...
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...
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...
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...
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...
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...
That was neat! What if you wanted that popup to have an "Add book" 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
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...
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...
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 "Last-modified","Sat, 01 Mar 2003 10:00:00 GMT"
That should do the...
You could do it like this, for instance:
Set db = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
db.Open DSN, USER, PWD
Set rs = db.Execute("sp_myStoredProcedure")
Palooka
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.