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 strongm 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. MrPink1138

    Forms authentication failed for the request. Event Log Error

    IISReset solved the problem but I'm more interested in making sure it doesn't happen again. Thanks
  2. MrPink1138

    Forms authentication failed for the request. Event Log Error

    I have a database driven web app written with ASP.NET 2.0 and using SQL Server 2000 for the database. It's using the user/roles/membership functionality in 2.0 and has been running fine until this morning when it began to freeze up. The only thing I can find in the event logs is the following...
  3. MrPink1138

    Error Handling in global.asax

    I'm trying to write a script that will email me everytime an error occurs in my web app. I have a global.asax file with the following code... Protected Sub Application_Error(sender As Object, e As EventArgs) Dim ex As Exception = Server.GetLastError().GetBaseException() Dim exEmail As string...
  4. MrPink1138

    Get current URL?

    Cool... thanks. I've ended up using FlashVars to pass the URL in. Still baffles me that Flash doesn't have a built in actionscript for this.
  5. MrPink1138

    Get current URL?

    Is there any possible way in actionscript to retrieve the URL of the current page? _root._url will give me the URL of the swf file, but what I need is the URL of the html page that's loading the swf file. Any ideas?
  6. MrPink1138

    Visual Studio project setup help

    Thanks for the link. That does look a little more compmlicated than I imagined it would be. I want the files on the network drive for backup reasons and for the fact that occasionally someone else may need to access. I'm not that familiar with Source Safe... would that help with managing the...
  7. MrPink1138

    Visual Studio project setup help

    I'm VERY new to Visual Studio so apologies if this is a dumb n00b question. I want to start doing more work building ASP.NET web apps in Visual Studio instead of using Dreamweaver. I have everything installed and I'm trying to create new projects. I would like my project files to be stored on...
  8. MrPink1138

    Javascript inside a datgrid

    I have a dropdown menu and when the selected index changes, I want to call a javascript function to check the value and then disply/hide a 2nd dropdown. None of this would be difficult except for the fact that this takes place inside of a datagrid so my dropdown names change to something like...
  9. MrPink1138

    Running multiple versions of Safari?

    Why cater to old users? Because my client uses Safari 1.2. I agree with you but the client pays the bills. For whatever reason they haven't updated to the newest version and when I suggested that, the response was basically... "well it should work in all versions" Thanks for the idea... I just...
  10. MrPink1138

    Running multiple versions of Safari?

    You'll have to forgive me if this is a stupid question. I'm a web developer and long-time PC guru (aka Mac newbie). I just recently purchased my first Mac (an iBook) so I can test websites on Mac browsers and cuz OSX rocks. It's my experience that Safari 1.2 has lots of quirks and bugs that...
  11. MrPink1138

    Importing relational data from Excel

    For some reason I thought it would be more complex than that. :) That works great. Thanks!
  12. MrPink1138

    Importing relational data from Excel

    I have a spreadsheet given to me by a client which contains 2 workbooks. 1 for publications (Washington Post, NY Times, Associated Press, etc) 1 for journalists with their associated publication. So the data would be 2 columns and look like: Bob Jones, Washington Post John Smith, NY Times etc...
  13. MrPink1138

    Best way to print table structure?

    Brilliant idea... That's perfect! Thanks so much for your help.
  14. MrPink1138

    Best way to print table structure?

    I'm building a complex database and I'd like to have some printouts of my table designs so I can easily look up column names, data types, and lengths. SQL Enterprise Manager doesn't really appear to have a way to easily print this information. I can cut/paste from Design mode to notepad but...
  15. MrPink1138

    Using ASP and API to create new users

    I have a client using Merak who wants a website signup for integrated with it. I.e. - user fills out signup form on site and it will automatically create them an email account in Merak. I should be able to do this with ASP and the Merak API but was just wondering if anyone had any experience...
  16. MrPink1138

    IIS SMTP Virtual Server Email Question

    I have a habit of posting messages to forums and then finding the answer myself. So I'll post my solution here in case others have the same problem. I tried specifying the IP address of the SMTP server I tried specifying the server machine name I tried specifying Localhost and 127.0.0.1 I...
  17. MrPink1138

    IIS SMTP Virtual Server Email Question

    I have a Win2k server with the IIS SMTP Virtual Server turned on. I've been using it for ages to send emails from contact forms and whatnot with ASP pages. Now I'm making the switch to ASP.NET and want to do the same. However, when I try to send an email from a .net page I get the following...
  18. MrPink1138

    Dynamically un-check a checkbox?

    Do'h!! I knew it was something silly like that. Thanks a million. Everything works perfect now.
  19. MrPink1138

    Dynamically un-check a checkbox?

    Forgive me if this is s stupid question but I do 99% of my scripting on the server side so I'm not up on my client side javascript. I have a form where users can enter in a bunch of email addresses and hit a checkbox for wether or not that person should be contacted. I want to have it so that...
  20. MrPink1138

    Need to compare two arrays and remove certain words

    Thanks so much for the suggestion. I'm not all that familiar with using HashTables but I will definitelly RTFM. :)

Part and Inventory Search

Back
Top