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 bkrike 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: GDX
  • Content: Threads
  • Order by date
  1. GDX

    re: Pages do not load completely

    I have an asp site running on an MS-SQL server backend and sometimes the website doesnt load completely when i goto view source and look at the code it just stop at random areas in the html file and there are no asp errors any ideas? Seems like IIS doesnt send all the code!
  2. GDX

    SQL Server 2000 And Multiple Listening Ports

    I followed the directions at: http://support.microsoft.com/kb/294453 to get SQL server to listen on multiple ports i placed "1433,1533" in the textbox and it always resets to "1433" i would like to have port ports listening because behind the firewall my apps can use 1433 ( so i wont have to...
  3. GDX

    IP Accounting on Windows 2000

    Hello I have about 5 servers ( IIS and MSSQL ) and i need to make sure none of them are connecting to ip addresses on a certain IP block how can i go about this? Is there a feature in windows 2000 that will allow me to do this? I know i can do a netstat but i dont want to sit there 24/7 looking...
  4. GDX

    Max Exceeded Users In Terminal Server

    It seems like I have some people that click the X to close their sessions and terminal server isnt releasing the sessions. I think only 2 people can be logged in via Terminal server at a time. I was wondering how can I go about properly disconencting users right away so it does not hog all the...
  5. GDX

    Sorting Data

    Hello Guys, I am pulling states from a table and displaying them 3 per row for example: Alabama | Alaska | Arizona Arkansas | California | Colorado I am using the following code tobreak into another row: XState = XState + 1 If XState = "3" Then XState = "0" %> <tr><tr> <%End If%> But my...
  6. GDX

    User deleting records from table :(

    Can someone help me track down who might be deleting records from a table? The database is linked to about 4 diffrent websites and somehow someone is getting in to delete records im not sure how. I need some ideas on how i can go about tracking down who might be doing this. We have no stored...
  7. GDX

    On Delete Trigger Help

    I am trying to create a simple trigger to backup the data before its being deleted from the authors table but i am having some problems doing that: CREATE TRIGGER [AUTHORDEL] ON [dbo].[authors] FOR DELETE AS INSERT INTO author_delete ( select * from deleted where au_id=@@identity ) Anyone...
  8. GDX

    Reporting Daily Stats Via Email

    Anyone know of a good ( possibly free ) application that will send me server stats every morning via email like the following: -Memory usage -Hard drive space free/used -# Of Failed Username attempts Basically any critical information i will need to know to make my day to day life a little...
  9. GDX

    GetDate and Timezones

    Hello Guys, I am in NY and im making a website that has to operate on EST but the problem is my web server and sql server is located in CA. Is there a function that will work on specific timezones? I know i can just GetDate() - 3 (peusdo code) but is there another solution? Is there another...
  10. GDX

    Encryping Connection String Information

    Hello Guys, Anyone know how i can go about encrypting my connection string info in my ASp pages? Gordon R. Durgha gd@vslink.net http://www.vslink.net http://www.brainbench.com/transcript.jsp?pid=1217371
  11. GDX

    I can see HTML but not ASP pages!

    Any idea why i would be able to see .htm pages but not .asp? I get a 404 - File Not Found error. I placed a .htm file in the same directory and that comes up fine. I am doing some security auditing and dont see any failures and norton's auto protect is disabled and manual scan doesn't scan .asa...
  12. GDX

    Creating dotNET App locally - Easy?

    Hello Guys, I tried connecting to my local webserver (localhost) from VS.NET 2003 and its telling me the .NET Framework isn't installed yet i can see the ".NET Configuration Wizard" when i goto control panel, Anyway i reinstalled the framework and still nothing. I went under the the application...
  13. GDX

    Syncronizing Two Database Tables

    Hello I have a table in 2 databases on Named Data1.Tbl1 and Data2.Tbl1 They both need to keep the information up to date, Data1.Tbl1 is the main table but if someone adds data in Data2.Tbl1 I need it to update properly in Data1 Can someone please tell me how do go about doing this? The 2...
  14. GDX

    Multidatabase Query

    Hello I am trying to connect two tables together from two diffrent MSSQL Databases on the same box. Is this possible through a query or do i have to write a VBScript to perform a compare on the two tables? Thanks, Gordon Gordon R. Durgha gd@vslink.net http://www.vslink.net...
  15. GDX

    Getting back data from webservices

    Hello i am having some problems getting back data from a compiled wsdl im calling. Here is a copy of the simple code, I do not recieve an error i just need to view the return data from the"WebClientAsyncResult" can someone please help? Dim oCatalog As New CatalogService Dim...
  16. GDX

    Parsing Data From XML Array?

    Hello I am trying to place an XML Response into an array for easy parsing but im having a very hard time doing this. Can someone please help me? We are using the SOAP ToolKit with ASP (Not .NET). If you look at the results you will see that i am getting back the data but now how do i loop...
  17. GDX

    Encrypting ASP Pages

    Hello I am looking for encrypt and decrypt my ASP pages so no one can steal the code how can i go about doing this? Gordon R. Durgha gd@vslink.net http://www.vslink.net http://www.brainbench.com/transcript.jsp?pid=1217371
  18. GDX

    MDI Child

    Hello can someone tell me how to go about creating an MDI child? I already created the MDI Parent by setting isMDIContainer = true but now when i do a form.show() the child is allowed to go outside the MDI Parent, Do i have to specify additional parameters to make a form an MDI Child? Or is it...
  19. GDX

    ASP + JSCRIPT + IIS5.0

    Hello Guys, For some weird unknown reason everytime I call a simple procedure using ASP and JSCRIPT I get some weird errors, Sometimes the call works w/o any errors other times I get errors I think it may have something to do with MDAC. I am not sure what to do anymore I am...
  20. GDX

    Installed PHP3 On Windows.NET 2003

    Hello I cant seem to fix this problem (I am new to PHP) I ran the installer and everything seemed fine, I have the website setup in IIS to point ext: php to the PHP file, now when i goto run a simple PHP script that says Hello World i get the following error on the site... No input file...

Part and Inventory Search

Back
Top