Jump to content

wechaur

Members
  • Posts

    7
  • Joined

  • Last visited

About wechaur

  • Birthday 04/03/1979

Contact Methods

  • Website URL
    http://

Profile Information

  • Location
    Singapore

wechaur's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. <input type="checkbox" name="ID" Value="CS 1001">Student_ID = Request.form("ID")Response.Write(Student_ID)output result = CSWhy display CS only? support is CS 1001
  2. wechaur

    Form within Form

    Is it possible to use Form within Form?For example:<Form name="form1" method="post" action="abc.html"><input type="text" name="name1" size="20"><input type="text" name="name1" size="20"><Form name="form1" method="post" action="abc.html">......</Form>...<input type="submit" name="Submit" value="Submit"></Form>
  3. wechaur

    Request Query

    I know it. Using Server.URLEncode(string) function to encode the client name before put in the URL.thank you.
  4. wechaur

    Request Query

    But the client name is entered by user, is flexible.
  5. wechaur

    Request Query

    The url is http://www.kts.com.sg?client_name=More%20&...0More%20CompanyMy code isCompany_Name = Request.QueryString("client_name")Response.Write(Company_Name)Output isMoreSupport the output is More & More Company, but why only More? How to solve the problem?Thank you.
×
×
  • Create New...