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 SuperCyber

  1. SuperCyber

    Sick of Dealing With Nulls

    If im not mistaken, you are setting your variable to zero, which does not equal a null value it equals zero. If you want to set something to nothing I use the variable = String.Empty and have had no problems. You may also want to look into vbNullString. Hope this helps you. SuperCyber
  2. SuperCyber

    Help needed with Array from RecordSet

    After driving myself crazy I have come up with the code below to put a recordset into an array. It produces the required result but I know that there has got to be an easier way to do this. Any help is very appreciated. Brian Function FncEmpList() Dim rs Set cmdListEmp =...
  3. SuperCyber

    Please Help!!, SQL 2000 and Return Values from SP

    Please help!! When I run the stored procedure in SQL I get the proper return values for "1", "2", and "3", but when I execute the ASP code I only get return values when they are equal to "1" and equal to "2". The return value for "3&quot...
  4. SuperCyber

    SQL stored proc and ASP calling code

    Is there anyway to make this code run more efficient? I have added my APS calling code and the SQL stored procedure. Thanks for any help or input, it is very appreciated. Brian ------------------ASP Code------------------ Dim cmdGetCust, varLogin, varPassword, strID, strFirstName...
  5. SuperCyber

    JavaScript and previous web page address

    Is there a way to find out the name of the web page that the user just came from? I have a little script I am writing and I need to make sure the user came from a certain page. Thanks in advance for any help. Brian
  6. SuperCyber

    Printing a page created dynamically

    I will do my best not to make this confusing, I hope. I have an order page that passes values to another ASP page to reconstruct the values passed into html format for emailing. Before I create the email format I make calls out to SQL stored procedures which imports and exports data from my...
  7. SuperCyber

    Printing an ASP page created dynamically

    I will do my best not to make this confusing, I hope. I have an order page that passes values to another ASP page to reconstruct the values passed into html format for emailing. Before I create the email format I make calls out to SQL stored procedures which imports and exports data from my...
  8. SuperCyber

    Frameset and innerHTML, help please

    All I want to do is take a web page that has a frame set in it and pull all of the html code from the entire page (including the code that is showing to the user from the frameset) into a variable. Hope I am explaining this correctly. Thanks, Brian
  9. SuperCyber

    Frameset and innerHTML, help please

    Is there a way that I can retrieve all of the html code that is shown in a web page? I am using innerHTML to get the html code from one of my web pages and I can retrieve all of the html code except that which is in a frameset in the middle of the page. Any help is greatly appreciated. Thank...
  10. SuperCyber

    Html source of a page into a variable, please help

    Thank you for your response. Sorry, I should of said that I need the HTML code, tags included, at the submitting of the page. So at the end of the site when the user clicks on the submit button, I want to put all of the body html code into a variable so I can reference it on the page it will be...
  11. SuperCyber

    Html source of a page into a variable, please help

    I need to figure out a way to take a page that varies in length each time and read the html code and place it into a variable so the page that i forward to can request the data. Any help is greatly appreciated. Thanks, Brian
  12. SuperCyber

    Help needed with Function

    This is the ELSEIF Statement I am using to call the Function. Thanks again, Brian <%If ((Address1 = Address2) AND (Apt1 = Apt2)) Then%> <%call custInfo1(Address1,Apt1)%> <%ElseIF ((Address1 = Address2) AND (Apt1 <> Apt2)) Then%> <%call custInfo2(Address1,Address2,Apt1,Apt2)%>...
  13. SuperCyber

    Help needed with Function

    What am I missing here? Im at a loss. Any help is appreciated. Thanks, Brian Function custInfo2(Address1,Address2,Apt1,Apt2) Dim Ap1, Ap2 If Apt1 <> &quot;&quot; Then Ap1 = &quot; Apt. &quot; & Apt1 Else Ap1 = &quot;&quot; End If If Apt2 <> &quot;&quot; Then Ap2 =...
  14. SuperCyber

    JavaScript ===&gt; APS ????

    Yes, thank you, I would like any examples you can give, but how do I get the value passed into the <% ASP %> code from javascirpt or vbscript to use in a database call? I need to get the value of a drop down box into a variable so I can use it as an input variable in a SQL SP. But I would like...
  15. SuperCyber

    JavaScript ===&gt; APS ????

    Can I pass a value form JavaScript into ASP? Thanks, Brian

Part and Inventory Search

Back
Top