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 bkrike 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: *

  • Users: SuperCyber
  • Content: Threads
  • Order by date
  1. 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 =...
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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
  9. 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 =...
  10. SuperCyber

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

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

    How to pass value from vbscirpt to ASP???

    I have a client side vbscript that returns the value for the selected dropdown item. I want to pass the value to a function that will run a stored procedure and return the values to the web page, but I cant get the value to pass to the function properly. I tried putting the RUNAT=Server in the...
  12. SuperCyber

    Selected Value for drop down, Help Please....

    I am beating my haed against the wall ive tried everything i can think of and still i cant grab the value of this dropdown. Any help is greatly appreciated. Brian varID = document.form.PHY_1.options(document.form.PHY_1.options.selectedIndex).value
  13. SuperCyber

    Selected Value for drop down, Help Please....

    I am beating my haed against the wall ive tried everything i can think of and still i cant grab the value of this dropdown. Any help is greatly appreciated. Brian varID = document.form.PHY_1.options(document.form.PHY_1.options.selectedIndex).value
  14. SuperCyber

    Help Needed, Stored Procedure and Return Value

    I cant seem to get this code to work. Input is just a login user name (@Login) and password (@Password). It returns the proper values for the user information but I cant get the OUTPUT variable (@RETVAL) to return the correct value. Any help would be greatly appreciated, Ive worked on this for a...
  15. SuperCyber

    Alignment IS DRIVING ME CRAZY

    Sorry for this stupid question but I have looked everywhere and tried everything I can think of but for some reason I am drawing a blank. All I need to do is figure out how to line the &quot;Country&quot; field to match up with the rest of the form. I have two problems, first, I can’t make the...
  16. SuperCyber

    Stored Procedures and Return Values

    My problem is that I get a -1 returned to my ASP page from my SP, but in the Query Analyzer it works properly. Basicly I am just returning the code and writing the response until I figure this out. Below I have listed the SP (Thanks to Terry Broadbent) and my ASP code. Any help is greatly...
  17. SuperCyber

    Stored Procedures and Return Values

    I am trying to build a WHERE clause within a store procedure. Depending on the int value passed to @ID (the employee id number) it looks to see if the value of empAdmin is &quot;YES&quot; or &quot;NO&quot;. The problem is that the @RETURN_VALUE is not returning anything for @Admin, but the SP...
  18. SuperCyber

    Help needed converting from

    I am trying to build a WHERE clause within a store procedure. Depending on the int value passed to @ID (the employee id number) it looks to see if the for varchar value of empAdmin is &quot;YES&quot; or &quot;NO&quot;. The problem is that the @RETURN_VALUE is not returning anything, but the SP...

Part and Inventory Search

Back
Top