Search:

Type: Posts; User: kooshal; Keyword(s):

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    3,269

    There's no Try and Catch in ASP, use "On Error...

    There's no Try and Catch in ASP, use "On Error Resume Next". Try and Catch statements are available in asp.net only! ASP is just VBScript. You cannot also use the Dim As Statement here's a sample...
  2. Replies
    1
    Views
    2,506

    Replace the target="main" with target="_top"

    Replace the target="main" with target="_top"
  3. Replies
    8
    Views
    10,147

    Try this: --------- In each page at the top...

    Try this:

    --------- In each page at the top before include statement -----------
    <%
    Dim pageTitle
    pageTitle = "## Your page title here! ##"
    %>
    -----------------------------------
    ---------...
  4. Replies
    1
    Views
    7,304

    Use this code:

    Use this code:


    <%
    'Declare variables first!
    Dim Conn, rs, SQl, msg
    'Create Connection and RecordSet Objects
    Set Conn = Server.CreateObject("ADODB.Connection")
    Set rs =...
Results 1 to 4 of 4