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

    'WebForm_PostBackOptions' is undefined

    I've recently upgrated to .NET Framework 2.0 and VS2005. In my asp.net application I am receiving this error: 'WebForm_PostBackOptions' is undefined. The error occurs on postback (asp:button). I've searched all over google and have not yet been able to find a solution. When I view the source...
  2. mgreer

    Creating web service client

    How would I go about creating a web service client using soap in PowerBuilder 7? Any info or direction would help. thank you.
  3. mgreer

    Java Compiler VM question

    Does anyone know of a java compiler that supports both the Java VM and Microsoft VM? I'm trying to compile an applet for a web page. thanks.
  4. mgreer

    Can't conditionally include server script files

    Unfortunately it is more complicated than this. I wish I could put it all in one routine but that's not an option. I think I've found a workaround though. I'll post what I did after I iron out all the details. thanks for your input.
  5. mgreer

    Can't conditionally include server script files

    I have 3 files. One is main.asp, the other two are .vbs files with runat=server. These two files both have the same routines with different content. For example: Main.asp declares a variable &quot;Variable1&quot;. Script1.vbs - <script language=&quot;VBScript runat=server> Function...
  6. mgreer

    Web Service State Management

    I've developed a .NET XML Web Service to run server-side. I've also developed an ActiveX dll to call the web service using MSXML2 (XMLHTTP40, DOMDocument40). My problem is trying to keep the session state between the two. My end goal is this: With the first call to the web service, it...
  7. mgreer

    CRAXDRT error

    I am having the same problem. Did you ever figure out a solution to this? Any help would be appriciated.
  8. mgreer

    Passing RS to Supreport

    I'm trying to pass a recordset to a subreport that I don't know the name of. I'm using ASP and CR8 Automation Server I'm getting a 'Type Mismatch' on the following line: Set session(&quot;CrSection&quot;) = session(&quot;CrSections&quot;).Item(i) Here is the code: Set...
  9. mgreer

    WebUIValidation.js and IE Favorites

    I have an asp .net application that uses the WebUIValidation.js scripts. My problem is this: If I add this site to my favorites (in IE) it adds the site as this: http://somesite/demosite/ Then, when I access the site I get the following error message: &quot;Unable to find script library...
  10. mgreer

    &quot;File or Assembly name ADODB, or one of it's dependencies, was not fou

    Yes, framework is properly installed. I've been through a lot to get it working correctly, including the latest security updates from the following link: http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/msdn-files/027/001/829/msdncompositedoc.xml IIS is working...
  11. mgreer

    &quot;File or Assembly name ADODB, or one of it's dependencies, was not fou

    I have a reference to ADODB. ADO+ is unfortunately not an option. I'm getting this error message when calling another com object from an asp.net app. But, I don't get this message in my development environment. It only appears on another web server (that doesn't have the dev env. installed).
  12. mgreer

    &quot;File or Assembly name ADODB, or one of it's dependencies, was not fou

    Does anyone know how to fix this? &quot;File or Assembly name ADODB, or one of it's dependencies, was not found.&quot; I'm getting this error message when calling a COM object from an asp .net application. thanks for any info.
  13. mgreer

    How to set focus on ASP to textbox in Javascript on failed validation.

    Hey, did you ever figure out a solution to this? I'm having the same issue. thanks.
  14. mgreer

    Javascript Custom Validator Focus

    I'm trying to set the focus and select the contents of a textbox on an aspx page if the javascript Custom Validation fails.. Ex: <asp:textbox id=&quot;AccountNumber&quot;></asp:textbox> <asp:CustomValidator id=&quot;custValAccountNumber&quot; Runat=&quot;server&quot; ErrorMessage=&quot;Invalid...
  15. mgreer

    xmlhttp spaces in url string

    Awsome! That works. Thanks!
  16. mgreer

    xmlhttp spaces in url string

    I'm tring to post a normal url string to an asp page but am having trouble with values with spaces in them. For example: objXMLHTTP.open &quot;POST&quot;, mvarURL, False objXMLHTTP.setRequestHeader &quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot; strSend =...
  17. mgreer

    xmlhttp post to an asp page...

    I'm trying to post data from a vb form to an asp page using xmlhttp40. My problem is that the asp page expects the data through request objects.. not in the querystring. Does anyone know how to post data from a vb app to an asp page using Request (not Querystring)? Thanks.
  18. mgreer

    temporary table

    That works beautifully. Thank you!
  19. mgreer

    temporary table

    In a stored procedure I need to create a temporary table that has one column (date). Then I need to insert every day for the past... let's say year. So I need an entry for every day from 1/1/2002 to the current day. I know how to create the table but am having trouble getting the data into...
  20. mgreer

    Importing Subreports with different Database Names not working

    I'm trying to import several subreports into a main report. I woule like each subreport connects to a different database. Even though I set the logon info correctly the subreports all show data from the first subreport imported. For example...

Part and Inventory Search

Back
Top