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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Mike555

  1. Mike555

    Access Update Stored Procedure Problem

    Hi. The first thing that I notice is that your subroutine does not have a 'Handles' statement which specifies when it should execute. Give this a try... Sub UpdateItem(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) Handles dgMemberList.UpdateCommand
  2. Mike555

    Problem w/ Culture in System.Globalization

    Yes. Interestingly enough, I've noticed this pattern occuring with AOL users. I'll have to look into the AOL browser to see how/why it may be different than IE/Firefox as it relates to culture.
  3. Mike555

    Problem w/ Culture in System.Globalization

    In one of my asp.net sites, I set the thread culture equal to the language specified in a user's browser. The code I use to achieve this is pretty lengthy, but in a nutshell if the user's browser language is English-US, the thread culture equals 'en-us'. Periodically users will report errors...
  4. Mike555

    Duplicate Assemblies in the GAC (server vs. localhost)

    Is this it? If so, what do I need to do here? Thanks. C:\windows\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files
  5. Mike555

    Duplicate Assemblies in the GAC (server vs. localhost)

    Where is the asp.net temporary folder located?
  6. Mike555

    Duplicate Assemblies in the GAC (server vs. localhost)

    I have an assembly named AccountingLogic.dll which is referenced by over 15 different ASP.NET applications. On my production server that runs all the .NET apps, there are multiple versions of this assembly in the GAC, all with the same Public Key Token. My older sites are using older versions...
  7. Mike555

    Datagrid Hyperlink...

    You can utilize the .NavigateUrl property of the hyperlinkcolumn for this. Simply set this property equal to the fully qualified path of the file/directory here. More info the .NavigateUrl property...
  8. Mike555

    Execute VB.NET Function from JavaScript Function

    I'm trying to build a javascript function which executes an existing vb.net function in the current page. I can't find any examples of how to do this, so I'm totally stuck. Could someone please give me some advise on how to accomplish this? <script language="JavaScript">...
  9. Mike555

    Simple IF/ELSE javascript help

    Thanks all
  10. Mike555

    Assign variable value based on textbox value

    I'm trying to set a javascript variable equal to a label value in an asp.net page. This is what I currently have, but it doesn't work. Could someone please let me know what I'm doing wrong? Thanks. variable="document.findcontrol(lblBrand).text";
  11. Mike555

    Simple IF/ELSE javascript help

    Misprint - The error I'm receiving is... "Name 'TireBrand' is not declared."
  12. Mike555

    Simple IF/ELSE javascript help

    Hi. I'm trying to set a javascript variable named tire_type equal to a vb.net variable named TireBrand. TireBrand is a PUBLIC variable in the code-behind. As you can see I'm trying to set tire_type = "AfterMarket" if the TireBrand varible is Null. However, I keep getting the error "Name...
  13. Mike555

    check if file exsists

    http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=209

Part and Inventory Search

Back
Top