Results 1 to 2 of 2

Thread: A challenge to everyone...

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    I will start by showing a screenprint of what I'm working with so it might be a little easier to understand.

    http://artsapimp.8m.com/new.htm

    I am going to do my best to explain what I'm doing here, it may be a little confusing.

    I have a page called new.asp which has 12 categories to rate support reps while being monitored. Each category also has a MORE button, when clicked a new window (moregreeting.htm, moreaccuracy.htm, etc.) opens with nothing but a textarea and a submit button.

    This textarea is made so the observer can note each category with examples.

    All of this is running to an access database.

    As of right now if the observer just fills out the form and submits it everything works fine. If he/she clicks the "more" button it opens the correct window like it's supposed to also.

    BUT...
    When you click submit on the popup window (moregreeting.htm) it doesn't know which recordset to apply these notes to.

    How can I make this work as I expected it to? Thanks
    If you think education is expensive, try ignorance.

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    Alright, I am still working on it and think I have some ideas here but I'm not dont yet. I decided that using sessions might be the way to make this work and decided to try a few things.... obviously not working. Please tell me if I'm way off or if this makes sense to anyone.

    This is the code I have for the popup window. It's address is MoreGreeting.asp.
    Code:
    <%
    If (IsNull(Session("MoreGreeting"))) Then
    %>
    <FORM ACTION="MoreGreeting.asp" METHOD="POST">
    <font face="arial">GREETING:<BR>
    <TEXTAREA COLS="56" ROWS="3" NAME="greeting"></TEXTAREA><br>
    <CENTER><INPUT TYPE="SUBMIT" VALUE="Submit">&nbsp;&nbsp;<INPUT TYPE="RESET" VALUE="Reset"></CENTER>
    </FORM>
    <%
    Else
    	Session("MoreGreeting") = Request.Form("greeting")
    %>
    	<script language="javascript">
    	javascript:window.close()
    	</script>
    <%
    End If
    %>
    [Edited by artsapimp on 08-18-2000 at 07:26 PM]
    If you think education is expensive, try ignorance.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width