Jump to content

Gesh

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by Gesh

  1. i need to insert image which is store in "My pictrues" in my computer.i need to insert in from xsl file, but i dont know how to write the code....any1 pls help me.... thanks a lotz
    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">

  2. hi, how can i disable the view source, so that my web's code cannot be viewed?
    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
    You can not disable view source becourse it is a built in function.
  3. 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

  4. 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 !

  5. 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...