Search results

  1. SubSpace

    Internet radio - good 70s rock stream?

    I think Last.fm has expanded their collection of streamed music to include all material from several large record companies as well. It's not available in the Netherlands yet though, so I haven't been able to try it. It's available in the USA as well as Germany and some other countries I think...
  2. SubSpace

    File permission in asp.net 2.0

    I think the difference is that the control does it's own checking if the file exists and is accessible before ever creating the database connection, which is why it only functions inside the application directory with these trust settings. Uhm, what are you using the DllImport attribute for...
  3. SubSpace

    File permission in asp.net 2.0

    What are you using to connect to your database? OLE DB, ODBC? I don't think either of those would give that specific error message.. I think the medium trust settings on .NET allow only direct file access to files that are inside the application directory. I never really understood why this...
  4. SubSpace

    .org vs .net name server question

    Hmm, I seem to recall that it wouldn't include any nameserver glue for my .org domain name, resulting in an extra DNS query upon lookup.. Seems odd that they refuse to change the nameserver to .net ones though.
  5. SubSpace

    If ElseIf within another If ElseIf in ASP

    The ELSEIFs in the brown part are missing their 'Then' keywords. IF and ELSEIF both require a THEN, it's only ELSE that doesn't.
  6. SubSpace

    ASP code Auto-Run

    I'm not sure what you're trying to do exactly.. It looks like you're mixing JavaScript and VBScript? In that example, yes the ASP will be executed when the page is displayed (since it's not inside a VBScript sub or function), and whatever output is generated is put into the page into a client...
  7. SubSpace

    ASP code Auto-Run

    That's not likely to fix it. If it's being executed without the function being called, it's not within a function :) Proper indentation can help spot the issue, much like your if / elseif problem :)
  8. SubSpace

    ASP code Auto-Run

    If it's inside a function, it will never be executed unless you call that function somewhere. You might want to check your code if you left any for test calls to the function that you used during development.
  9. SubSpace

    What is SFTP?????

    Because it's.. secure? :) I doubt you're actually referring to Secure FTP though, it's very rarely used. There is some confusion about the different alternatives for secure file transfer: Secure FTP (aka FTP over SSH): The FTP protocol is tunneled over a SSH connection. A standard FTP...
  10. SubSpace

    MS SQL and Users login/access

    Hmm, one of my websites at JodoHost has a separate login for admin and website and that works just fine. What's the error you're getting when you try to connect?
  11. SubSpace

    Timezone DayLightSaving

    Bummer :( IsInvalidTime() is the one that could have been used to fix the shift to summer time. Writing your own is kind of annoying. At least I couldn't find a way to get the date and time where the daylight shift occurs? Perhaps I'm just overlooking. The alternatives are providing that...
  12. SubSpace

    Timezone DayLightSaving

    I think I originally misunderstood the problem. You're talking about a user interface issue when someone schedules something during the DST shift in local time. At first I thought you were talking about your application messing up if someone shut down the server it was running on during the...
  13. SubSpace

    Syntax error in UPDATE statement.

    No you don't, it's just more commonly written that way. I checked on Google, apparently it's because the user you're executing the script as doesn't have write access to the database. When I changed the file permissions it worked here. http://support.microsoft.com/kb/175168
  14. SubSpace

    Syntax error in UPDATE statement.

    You need to use objConn.Execute SQL rather than your objRec line. An UPDATE statement does not return any records like a SELECT statement does.
  15. SubSpace

    Timezone DayLightSaving

    It's fairly simple: use UTC everywhere in your business logic. Only when you get to the part of showing a date, or interpreting an entered date you have to worry about timezones and DST. Key methods here are ToUniversalTime() and ToLocalTime() in the DateTime structure.
  16. SubSpace

    Can anyone see this web site?

    It's not loading here either. I use my own nameserver rather than my ISPs, so root servers must not be up to date. (2008-01-05 11:29 UTC)
  17. SubSpace

    ASP.Net 3.5

    From the news about Win3 on cluster 2 I assume testing with H-Sphere and .NET 3.5 was indeed succesful. Do you have any ETA on updating existing servers? Also, does the the ORM using .dbml files and/or SqlMetal work?
  18. SubSpace

    Custom file extensions

    I'm aware of transmitting files through a script to protect them, but in this case it wasn't about protecting downloads :) Thanks for the suggestion on the / notation though, I hadn't thought of that one, even though I use the syntax daily for webservice calls.. duh :rolleyes:
  19. SubSpace

    Custom file extensions

    Handle custom file extensions in ASP.NET Is there a way to make ASP.NET handle file extensions other than the ones configured by default that I'm overlooking in H-Sphere? Both ColdFusion and PHP appear to have the option to add additional extensions, but not ASP.NET? For example if I wanted...
  20. SubSpace

    ASP.Net 3.5

    LINQ is pretty awesome when the alternative is wring stored procedures that produce dynamic SQL just because you need to page/sort a GridView in ASP.NET 8) There are other ORM libraries, but I couldn't get NHibernate to work on JodoHost at least. It requires a minor tweak to medium trust I...
Back
Top