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 Mike Lewis 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: *

  1. alan6895

    Redirect to relative URL, but change to HTTPS

    That's what I'm considering, jmeckley. I figure I could get the current path, replace http with https, and then append the "relative" path to the current path. On the other hand, I think what I will do is set the top-level, non-SSL pages to check for and redirect themselves to use SSL, as per...
  2. alan6895

    Redirect to relative URL, but change to HTTPS

    I'm using explicit now. The problem is that the application needs to easily be "portable" between folders. I'm leaving where I am soon and the people who will be taking my applications are not familiar with them. That said, if I don't have a solution, I'll just be using explicit paths anyway...
  3. alan6895

    Redirect to relative URL, but change to HTTPS

    Does anyone know of a way that I can use Response.Redirect to send the user to a new relative path, but change the protocol to HTTPS? Users enter on an unencrypted page, so if I use Response.Redirect("./whatever.aspx") it transfers the user but, obviously, not the protocol. However, the page...
  4. alan6895

    Service "hang" on startup

    Thanks for the suggestion, itsp. Unfortunately, I need the service to startup at startup and not logon (though the Scheduled Taks would fix the logon part). I tried setting the service to delayed start, but then it was delayed much too long. Axis is our security camera provider, and any time...
  5. alan6895

    Service "hang" on startup

    I have a service (Axis Camera Station) that is being reported as hanging on startup. It's not. It just takes a little while to start on any OS. How can I change the threshhold for a hung service (or exclude the service) so that I'm not getting a Problem Report whenever the server reboots...
  6. alan6895

    Building a "proxy" page

    Hi all. I have a page on our intranet that I would like to display to the outside world. I don't need necessarily need to interact with it, just view it (it's a status page). Does anyone know of a way, using ASP .NET and, preferably, VB, that I can retrieve that page and redisplay it? I'm...
  7. alan6895

    how to filter a gridview

    Hi sajid. The way I handle searches tied to gridviews is to change the query. I use sqldatasource, so it may be different than your linq. What I do is set the datasource SQL query to incorporate the search item. For instance, if my original query (hard-coded in the ASPX page) displays all...
  8. alan6895

    Simple pre-made forum package

    Hi all. I'm looking for input on what the "best" ASP .NET forum package is. I've been asked to look in to making a forum site for parents to communicate on. We use Moodle already, but the director of parent involvement doesn't like Moodle (and I don't blame her in this situation). So, I'm...
  9. alan6895

    Issue raw ATA commands to devices

    Qik3Coder: I have search for OEM, commercial, and developer-made programs. I haven't had much luck. I just found one that's supposedly promising, so we'll see if it actually works at all. I know a program must exist because 1) if Seagate talks about the commands, there must be a way to use...
  10. alan6895

    Issue raw ATA commands to devices

    Hello everyone. I'm hoping somebody here can help me. I recently bought a Seagte ST9200420ASG drive for my laptop. This drive has a fall sensor that parks the heads when a fall is detected. The problem is that this feature is not enabled by default on my model (and only my model, for whatever...
  11. alan6895

    DNS (BIND) not resolving for hosts other than the localhost

    UPDATE: Fixed! Well it turns out it had nothing to do with DNS. Somehow, Fedora managed to lose my default dateway setting, so nothing was leaving our IP block.
  12. alan6895

    DNS (BIND) not resolving for hosts other than the localhost

    I've been thrown into the task of configuring BIND on Fedora 9. I never use Linux and I've never used BIND. I finally got all of our existing DNS info into BIND and working properly. I've configured iptables to allow the DNS ports, which solved one problem I was having. However, I still am...
  13. alan6895

    Keep app running in background and capture close event

    Fantastic. Works like a charm now. Thanks for your help!
  14. alan6895

    Keep app running in background and capture close event

    macleod: Thanks for the advice. Th service seems to be working alright. I did notice two issues between what I need it to do and what it's doing. First, when I capture the username, it gets the username of the user running the service. Right now, it's running as Local Service because I don't...
  15. alan6895

    Keep app running in background and capture close event

    I had thought about using a service, but figured it was too complicated. Looks like it's very simple, though. Thanks for the advice! I'll give it a try tonight.
  16. alan6895

    Auto Start Windows App. Service, Registry, Scheduled Task????

    Right after I posted that reply, I noticed someone had replied to one of my questions. It has some info you might find useful: " With everything that you need it to do, you should use a Windows Service instead of a Console. The Windows Service provides you with all the abilities you want to...
  17. alan6895

    Auto Start Windows App. Service, Registry, Scheduled Task????

    Hi Ben. I don't know a lot (ok, really anything) about creating services, but hopefully I can provide you with a little guidance. A service would probably be the best choice. It can run at startup and can restart itself if it terminates. Those properties are set in Services > Service...
  18. alan6895

    2008 Cursor problems

    Hi Ron. You might try this page, which may be the one you were at: http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.cursor.aspx Try looking at the Example section for VB. It shows how to use a certain cursor (something like DisplayArea.Cursor = Cursors.Hand). Setting...
  19. alan6895

    Keep app running in background and capture close event

    Hi all. I thought I posted this yesterday, but it doesn't show up in "My Threads" on the board. If this is a duplicate and the other is somehow hiding from me, I apologize. I have two questions about some VB .NET programming I'm working on. I have an app that runs at startup (from the Startup...
  20. alan6895

    ControlState Thoughts

    Hi JurkMonkey. Depending on what you're passing, you could consider using Session variables. I'm honestly not sure if that's the best way or a better way, but that's what I use when I need to handle cross-page or cross-postback data. Hope this helps!

Part and Inventory Search

Back
Top