Results 1 to 1 of 1

Thread: Beginner's problem with ASP - **RESOLVED**

Threaded View

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 2002
    Posts
    59

    Beginner's problem with ASP - **RESOLVED**

    HI,

    I am a beginner in ASP and don't know anything about ASP. I created a test page with some code from an online tutorial page. however when i browse the page nothing comes up where i have inserted the asp variables.
    this is the code i have in my .asp file.
    Code:
    <%@LANGUAGE=VBScript%>
    <%strName = Request.QueryString("txtName")
    strProbCat = Request.QueryString("cmbProblemCategory")
    strProbTitle = Request.QueryString("txtTitle")
    strDescr = Request.QueryString("txtarDesc")
    strNotes = Request.QueryString("txtNotes")
    %> 
    <HTML>
    <HEAD>
    <TITLE>Confirmation</TITLE>
    <meta name="Microsoft Theme" content="axis 011">
    </HEAD>
    <BODY>
    <BR><img border="0" src="images/image_heading_roundrect_bigger.bmp"><p>&nbsp;</p>
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%">
      <tr>
        <td width="100%"><font face="Verdana" size="2">  
        Problem Category: <%= strProbCat %>
    <BR>Title: <%= strProbTitle %>
    <BR>Description: <%= strDescr %>
    <BR>Notes: <%= strNotes %>
    <BR>Submitted by: <%= strName %> </font>    
          <p>    
          <font size="2" face="Verdana"><a href="AfterPost.htm">Continue</a></font>
        </p>
          </p>
        <p>&nbsp;</td>
      </tr>
    </table></BODY>
    </HTML>
    when the page is displayed in browser, only the following appears
    Problem Category:
    Title:
    Description:
    Notes:
    Submitted by:
    on the address bar the parameters and values are displayed properly so i think there is no problem with passing the parameters from the form to the asp. maybe i need to store the asp somewhere special on the server. i don't have admin. permissions on the server so i can't try out anything instantly. i have to let the admin. know what to do.
    anyhelp is appreciated.
    regards,
    urvi.
    Last edited by Urvi; Sep 10th, 2003 at 08:54 PM.

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