Jump to content

Gesh

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by Gesh

  1. I have never seen this tag before either in C# or html or any programming language for that matter
  2. Gesh

    XHTML or CSS?

    Naive Amoeba is write "hit two birds with one stone"
  3. Try this code<img src="c:/documents and settings/Username/my documents/my pictures/example.jpg"> Please check the extention of the image you are using(gif,png,jpg,bmp etc..) and make sure that the directory is typed correctly.I would suggest that you create a new folder and paste everything you are going to use in you page. This willsave you time becourse the will be no need to write the full name of the directory.Like this <img src="example.jpg">
  4. I think you should use ASP becourse when a user wants to view the source, the browser will only display plain html no scripts will apear
  5. I want a webpage to calculate Or find a larger Number between 3 numbers, so far i managed to get the larger number from 2 numbers. The must be 3 text boxes and 1 command buttonNote: The following example uses 2 text boxes and 1 command button <script language="vbscript"><!-- sub btnFind_onclick() Dim num1,num2 num1 = Cint(document.forms(0).txtOne.value) num2 = Cint(document.forms(0).txtTwo.value) if (document.forms(0).txtOne.value) > (document.forms(0).txtTwo.value) then msgbox "The Larger number is: " & (document.forms(0).txtOne.value) elseif (document.forms(0).txtOne.value) < (document.forms(0).txtTwo.value) then msgbox "The Larger number is: " & (document.forms(0).txtTwo.value) else msgbox "Both Numbers are equal" end if end sub--></script> This is the best i can do for now, Please help me anyone
  6. Code for Simple.asp<html><head><title<Gesh</title></head><%response.write(request.querystring("Fname"))%></head></html>Code for Enter your name.html<form method="get" action="Simple.asp"><input type="text" name="Fname"><br><input type="text" name="Lname"><br><input type="Submit" name="submit" value="Submit"><br></form>Thank you for helping me Reg Edit !
  7. Helo! EveryoneCan you Please tell me what is wrong with this codeCode for Simple.asp<html><head><title<Gesh</title></head><%response.write(request.querystring("Fname"))response.write("" & request.querystring("Lname"))%></html>Code for Enter your name.html<form method="get" action="Simple.asp"><form><input type="text" name="Fname"><br><input type="text" name="Lname"><br><input type="Submit" name="submit" value="Submit><br></form>
×
×
  • Create New...