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 derfloh 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. mihalych

    load recordset values into array

    How can I pass array to another page?
  2. mihalych

    load recordset values into array

    thanks for that how can I specify in rs.GetRows() to load only "ProductCode" field?
  3. mihalych

    load recordset values into array

    Can somebody help me. How can I load recordset values( product id's) into array. I want to pass array (id values) to another page.
  4. mihalych

    Posting Acceptor

    Is it possible to use Microsoft Posting Acceptor with Personal Web Server? Where can I get that cpshost.dll?
  5. mihalych

    #include problem

    I have a problem with #include statement. I want to include one HTML(.htm) file into another one but it doesn't work. For example: <<Main.htm>> <HTML> <HEAD> <TITLE>Main.htm</TITLE> </HEAD> <BODY> <!--#include file=&quot;inc.htm&quot; --> </BODY> </HTML> and <<inc.htm>> <tr>...
  6. mihalych

    database connection

    it actually gives two types of error, different every time the website accesses the database. One of them - Unspecified error (0x80004005). Another one - without error number but just saying that - the database is being accessed by another source.
  7. mihalych

    recordset paging

    thanks, it works but it displays the last page without link always. How can it start from first page?
  8. mihalych

    recordset paging

    <tr><td> <% for i = 1 to rs.PageCount %> <a href=&quot;product.asp?subcategid=<%=strSubcategoryID%>&subcategoryName=<%=strSubcategoryName%>&pg=<%=i%>&quot;><%=i%></a> <%next%></td></tr> this code works well and displays products and number of pages (underlined links to them). But how can I...
  9. mihalych

    page display

    Sorry that it wasn't clear enough. Actually there is no problem with frames and links. There is a page called &quot;administrator menu&quot; and it doesn't linked to any page in my program (it is located in wwwroot folder). To get to that page I must call that page in the URL address bar, like...
  10. mihalych

    page display

    there is no code (href) for that page that I want to load. It comes from http address. But it comes as a separate page and displayed in maximized mode. Is there some coding like document.location (or state) in <script> that can direct the page into desired frame?
  11. mihalych

    page display

    All the pages have <form name=&quot;form&quot; action=&quot;go.asp&quot; target=&quot;main&quot;>. So when I click links anywhere on the page it works fine and loads desired page in the &quot;main&quot; frame. But there is one page(located somewhere in the root directory) that I want to load by...
  12. mihalych

    page display

    Could someboby help me with the following problem. I have a frame set where all the pages loading in the main frame called &quot;main&quot; and that works fine. All the pages loading using ACTION and TARGET attributes. But there is a particular page that loads not by using 'action' and 'target'...
  13. mihalych

    add image to database through asp page

    Maybe somebody could help. How can I add image to a database through asp page, i.e. into products online catalog?
  14. mihalych

    The include file

    I'm getting the message &quot;The include file '/adovbs.inc' was not found &quot; But file does exist in right directory. Why program cannot see it?
  15. mihalych

    Login and display name

    I have got the following problem. When a user logs in and enters name, and if the login successful, the welcome page is displayed in the main frame. Something like : &quot;Welcome myName!&quot;. But also there is another frame at the top of the page (or wherever). So when login is validated, the...
  16. mihalych

    How to update fields in a database through dynamic controls

    Could somebody help me with the following problem. When I select a particular equipment, the catalogue containing products is dynamically generated. The products belong to that particular equipment. The code for that is : <%Do while not rsProduct.EOF%> <TR><TD><IMG...
  17. mihalych

    How specify target frame

    When I click the button in left frame, I want the page to load in the main frame. How can I write the code for button to specify the target frame. Sub cmdButton_onClick() location.href &quot;main.html&quot; what about target frame?? End sub
  18. mihalych

    Selected index in list box

    When I populate list box with server-side scripts like: <select size=&quot;1&quot; name=&quot;selSport&quot;> <% Do While Not rsCategory.EOF%> <option <%Response.Write(strSelected)%> value=<% =rsCategory(&quot;CategoryID&quot;) %>><% =rsCategory (&quot;CategoryName&quot;)%> <%...
  19. mihalych

    Can't read data from listbox

    Everything is working well. When I resubmit the page to itself, the first list box displays the first item, but how could it display the item that was selected before?

Part and Inventory Search

Back
Top