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 IamaSherpa 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. Ekstrom

    mac problem

    hi we have a problem in mac when we request a variable sent from ASP to flash. We do it like this (it works fine on pc enviroment): FROM ASP document: function init() { var movie = window.document.theMovie movie.SetVariable(&quot;intNewsID&quot;, &quot;<%=...
  2. Ekstrom

    Stored procedure

    Hi I want to return a ntext datatype to ASP. How do I do that? ASP: .Parameters.Append .CreateParameter(&quot;@textpart&quot;, adLongVarChar, adParamOutput) SQLServer 7.0: CREATE PROCEDURE sp_select_info ( @www_multi_info_id int, @headline varchar(250) output, @ingress varchar(1500)...
  3. Ekstrom

    Absolute page from component to asp

    Hi With the code below I want to page thru the recordset (page by page). I create the disconnected recordset in COM and send the data back to ASP. Do someone know why all records are returned each time instead of just one page? Also, it works fine if I don't return it back to ASP and iterate it...
  4. Ekstrom

    modifying coponent

    I get this error when I compile and overwrite an old version with a new one. Error Type: Server object, ASP 0177 (0x80040111) ClassFactory cannot supply requested class /smartreminder/newlogin_verify.asp, line 47 if I delete the package and recreates it all, it works just fine! If I just shut...
  5. Ekstrom

    let component create html code

    With the object references, i'm not exactly sure what you mean. I pass the connection (object) from one function to some other functions. Ex: calcBirthDate(Cint(intID), objConn) Private Function calcBirthDate(ByVal intID As Integer, objConn As ADODB.Connection) As Integer ... End Function I...
  6. Ekstrom

    let component create html code

    for a small server, 256 Mb memory and 600Mhz pentuim III processor is it then a bad solution to have the component to write the HTML code to ASP, instead of having all html code directicly in ASP. If the site, in the future, is frequently used will it then be processor intensive to send 10Kb...
  7. Ekstrom

    com+ function returns 10KB data to ASP

    regarding my question, in simple, what I ment were: for a small server, 256 Mb memory and 600Mhz pentuim III processor is it then a very bad solution to have the component to write the HTML code instead of having all html code directicly in ASP.
  8. Ekstrom

    com+ function returns 10KB data to ASP

    Hi an ASP site request a function from COM+. This function returns 10kb data in html format back to ASP. Is this a bad solution? in the future the domain may have a lot of users accessing this at the same time, and then it maybe would be better to have the html in the asp site from the...

Part and Inventory Search

Back
Top