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: mihalych
  • Content: Threads
  • Order by date
  1. 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.
  2. mihalych

    Posting Acceptor

    Is it possible to use Microsoft Posting Acceptor with Personal Web Server? Where can I get that cpshost.dll?
  3. 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>...
  4. 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...
  5. 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'...
  6. 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?
  7. 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?
  8. 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...
  9. 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...
  10. 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
  11. 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;)%> <%...
  12. mihalych

    Can't read data from listbox

    What is the correct way to get value from list box using server-side scripting? As Request.form(&quot;listbox&quot;) does not work.
  13. mihalych

    Request object

    Hello! How could I assign value from a list box in client side script but using server side object Request. The fact is that I need to get value from the List box and insert it in the query string to create recordset. For example: <SCRIPT LANGUAGE=&quot;VBScript&quot;> Dim intCategoryID...
  14. mihalych

    recordset doesn't work

    Hello! Could somebody help me with this. When I create recordset and run query : <% Dim intCategoryID, oNew %> <SCRIPT LANGUAGE = &quot;VBScript&quot;> Sub listBox_onChange() <%Set rsSubcategory = connST.Execute (&quot;SELECT SubcategoryName FROM Subcategory WHERE CategoryID = ‘” &...

Part and Inventory Search

Back
Top