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 SkipVought 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. TallOne

    Class Design - All methods routed via public then private?

    Thanks jmeckley! I've been coding using the Facade Pattern and didn't know it. The code I posted is an example of an application I've had to maintain. I have been getting irritated with the "noise" and just wanted to make sure I wasn't missing something before I change anything. Thanks again...
  2. TallOne

    Class Design - All methods routed via public then private?

    Assume an application always routes db access through a public method and then to private. I'm wondering what benefits this may offer? Below is an example. public class ClsTest { private static string xMyMethod() { return "I accessed a database"; }...
  3. TallOne

    WCF Service - Mulitple or One?

    Thanks jason. You have provided some important information. I'm still absorbing info from Udi. I think I'm am going to stay the course of the separate services for now. This is a beta product and my vendor is aware of that. If they complain, it's an easy change to make before putting into...
  4. TallOne

    WCF Service - Mulitple or One?

    Thanks for the feedback jmeckley. Regarding maintainability, agreed. Taking a look at the concepts the services are representing, I would compare it to an order entry system. Currently, I have a service for each area of the application. For example, a service for customers, one for orders...
  5. TallOne

    DLL Works from Visual Studio, but not IIS

    JD Solutions, Not sure if this will offer any help but you could try the following: 1. Make sure your references are set correctly in the project. 2. In IIS set the application pool to enable 32 bit applicaitons. 2. In the project properties, change target cpu to any cpu and/or also try x86...
  6. TallOne

    WCF Service - Mulitple or One?

    Hi everyone, I'm not sure if I'm in the correct forum as I did not see a WCF forum. I'm developing web services for a client that will be exposing methods which are all related to our current web application. I need to know if there is any advantages/disadvantages of putting all the...
  7. TallOne

    Lost References to all objects

    Hi, Just a suggestion: You may have a compilation error during rebuild in one of your projects. Take a look at the last error in the list and resolve then rebuild. Good Luck TallOne
  8. TallOne

    Generics

    Just use "ref Object nodeValue" but later you'll have to cast and probably put in "if" statement to get typeof If your talking about collections then yeah, using System.Collections.Generic; ....ref List<oYourObject> nodeValue...
  9. TallOne

    Force SSL in IIS7?

    Just to follow up... We can use the URL Rewrite Module to implement forcing SSL in IIS7. Below is a link I found useful in getting started. http://learn.iis.net/page.aspx/460/using-url-rewrite-module/
  10. TallOne

    Configuring IIS

    Andegre, Sorry about the previous post. I meant to create a post rather than reply. I believe in your case you will want to leave [All Unassigned]. I believe the selection is for configuring multiple websites host header records per ip address. Do you have host header records for each ip?
  11. TallOne

    Force SSL in IIS7?

    I've been using IIS6 for my web app installs and I force SSL by selecting force ssl in the certificate edit. However if a user types the url http:// rather than https:// the user gets a 403.5 error. I circumvent this by using a custom error page the redirects to the desired page using...
  12. TallOne

    Configuring IIS

    I've been using IIS6 for my web app installs and I force SSL by selecting force ssl in the certificate edit. However if a user types the url http:// rather than https:// the user gets a 403.5 error. I circumvent this by using a custom error page the redirects to the desired page using...
  13. TallOne

    Dynamic js file at runtime

    Thanks jbenson001!
  14. TallOne

    Dynamic js file at runtime

    Thanks ca8msm. I ended up combining js files to keep my logic in one place. For learning purposes and in the event I need to use this technique in the future, what's the correct usage? Are asp:controls allowed in the head tag? <head> <asp:Literal id="Literal1"...
  15. TallOne

    Dynamic js file at runtime

    Hi all, At the bottom is the head section of my aspx page. I want to set the src prop of the script at run time. src="Scripts/iphonenavIE.js" or src="Scripts/iphonenavSafari.js" If I add an ID and RUNAT props I get tons of unrelated errors on build and intellisense doesn't recognize the...
  16. TallOne

    IE7 window.attachEvent onclick doesn't work

    Nice! Thanks tsuji!
  17. TallOne

    IE7 window.attachEvent onclick doesn't work

    Again without the typo.... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script> (function() { window.attachEvent("onload", function(event) { alert('onload occured'); }, false); window.attachEvent("onclick"...
  18. TallOne

    IE7 window.attachEvent onclick doesn't work

    Sorry this is an intranet. Place this in an html file and you should be able to reproduce.... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script> (function() { window.attachEvent("onload", function(event) { alert('onload occured')...
  19. TallOne

    IE7 window.attachEvent onclick doesn't work

    Sorry, that was a typo. I still have the same issue.
  20. TallOne

    IE7 window.attachEvent onclick doesn't work

    Can someone help me with creating a onclick event for IE window? Onload works but not onclick? I'm using this in an ASP.NET page <script type="text/javascript"src="theCodeBelow.js"></script> (function() { window.attachEvent("onload", function(event) { alert('onload occured'); }...

Part and Inventory Search

Back
Top