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. phobe62

    Autogenerating C# Files

    Hello all, I'd like to ask your opinion on the best way to generate C# files. I've found a freeware app called CodeSmith (http://www.ericjsmith.net/codesmith/) that looks promising, but I haven't been able to look at it very much in depth yet. The C# files I want to autogenerate include class...
  2. phobe62

    Do you think it's possible...

    Do you think it's possible to create a business object that, before the page is loaded, determines what form fields exist on the page and writes JavaScript validation code dynamically? A co-worker of mine has already accomplished this kind of validation server-side by using a hash table. What...
  3. phobe62

    Get all property name-value pairs from one class; pass to another...

    I have several classes that are going to dump their properties to a "mother ship" class. In trying to accomplish this, I'm using a foreach loop, like this: ------------------------------ public void MoveForward(System.Type t) { foreach (PropertyInfo propertyInfo in t.GetProperties())...
  4. phobe62

    .NET Passport login prompt...?!

    That did it. The .NET Passport prompt is gone. However, the Windows login prompt is coming up, and I don't like that. Isn't there a way to automatically impersonate a user without them having to log in? Thanks, Nick
  5. phobe62

    .NET Passport login prompt...?!

    Hello, I'm trying to set up Integrated Windows Authentication for an Intranet web site I built for my company. I'm having a serious problem that I can't seem to fix, though. In Control Panel->Admin Tools->IIS->Directory Security->Edit I unchecked "Anonymous Access", which I know was a correct...
  6. phobe62

    Getting Active Directory "memberOf"

    Hi all, I'm interested in using C# to create a web app that authenticates the user in various parts of the site based on the user's Active Directory groups. How can I retrieve a list of the user's groups? I don't want to require the user to type in a username or password if possible. Thank...
  7. phobe62

    Microsoft Data Analyzer - Capabilities

    Does Microsoft Data Analyzer allow one to group customers into percentiles based on one of the fields, and then to analyze the resulting groups independently? Thanks.
  8. phobe62

    Microsoft Analysis Server & Excel Analytical Functions

    OK, I have a clearer idea of what I'm looking for now. In doing some research, I have discovered that Cognos (http://www.cognos.com/) and O2OLAP (http://www.o2olap.com/) provide the functionality I'm looking for. However, I would prefer to use native features of Analysis Services, if they...
  9. phobe62

    Microsoft Analysis Server & Excel Analytical Functions

    Hello, My company currently runs Microsoft Analysis Server. I believe that the analytical tools in Microsoft Excel must exist in Microsoft Analysis Server. Is this true? If so, can someone point me to some documentation for the use of these tools? Thanks in advance. Regards, Nick
  10. phobe62

    Replace function returns input

    Hi. The following function is returning exactly what is passed to it. For example, if I call formatInput('123456string') it just returns 123456 in the alert box. Does anyone know why this might be happening? //////////////////////////////////////////// function formatInput(string) {...
  11. phobe62

    Removing the flash from page to page

    Please reply even if you think this is stupid. I lack credibility if I don't get some other opinions.
  12. phobe62

    Removing the flash from page to page

    Hi all, I was put on a web design project after it was mostly complete. My assignment is to create an XML/JavaScript navigation tree. I did so, and I am loading into each page with an inline frame. I have run into a problem though. Yesterday I was told to keep the contents of the inline...
  13. phobe62

    XML variable -> JavaScript function

    Actually, never mind on the loop. I just used JavaScript. :-)
  14. phobe62

    XML variable -> JavaScript function

    Thanks guys. Now, for the loop... I haven't been able to get a useful answer from any web sites. Could I get a small example snippet that shows how to add 1 to the variable $numBoats each time it loops?
  15. phobe62

    Viewing HTML output

    You know, I feel really stupid for asking. But I've scoured the internet and can't find the tool I'm looking for. What I'm trying to do is to view the HTML that my XML/XSL outputs. Does anyone know where I can get a small (free) utility to view it? Thanks.
  16. phobe62

    XML variable -> JavaScript function

    That's definitely the snippet. Exact error message: Keyword xsl:variable may not be used in namespace When I take out the line above and the line below the line that does the loop (<xml:for-each...), the error goes away. On the other issue, let me say that I'm new to this. :) (Of course...
  17. phobe62

    XML variable -&gt; JavaScript function

    Also, this produces an error: ...... <tr> <td align=&quot;center&quot; valign=&quot;center&quot;> <table style=&quot;border: 1px solid #000000&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;> <xsl:variable name=&quot;numBoats&quot; select=&quot;0&quot;/>...
  18. phobe62

    XML variable -&gt; JavaScript function

    I have an XML variable that I want to pass into JavaScript. Something like: <script language=&quot;JavaScript&quot;> doSetM(VARIABLE); </script> The variable is called numBoats. How would I go about doing that? Some sample code would be much appreciated! Thanks.
  19. phobe62

    Mismatched end tag?

    Got it. Thanks!
  20. phobe62

    Mismatched end tag?

    Hi all. I have an XSL file that contains the following: <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.0&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;> <xsl:output method=&quot;xml&quot; indent=&quot;yes&quot...

Part and Inventory Search

Back
Top