Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

I made an internet browser (very basc)


Night_Stalker's Avatar
Member
0 0

It has one an hta extension. It isnt working, but I do not see why.

here is the source:

<head>
<title>Night_Stalker's Internet Browser</title>
<HTA:APPLICATION 
APPLICATIONNAME="Night_Stalker's Internet Browser"
ICON="NS.ico"
windowstate="normal">
</head>
<body>
<span id=adbar
style="overflow none">
<span
id=atext><B>Address</B></span>
<input type=text
value=http://www.hacker-planet.110mb.com
id=url
with="100"
style="width: expression(document.body.clientwith - 
atext.offsetwidth - 
ago.offsetwidth -85)">
<input type=button
value="Go"
id=ago onclick="navigate()"><BR>
<span>
<BR>
<iframe
scr="http://www.hacker-planet.110mb.com" id=data
style="width
100%: hight: 80%"></iframe>
<script language=jscript>
function navigate() {
document.all.data.scr = url.value;
}
function clickshortcut() {
if (window.event.keycode == 13) {
navigate()
}
}
url.onkeypress =
clickshortcut;
</script>
<br> Coded by:<b>Night_Stalker</b> Night_Stalker.smile@yahoo.com<BR>Visit my site at<Br><a href="http://www.hacker-planet.110mb.com">www.hacker-planet.110mb.com</a>
</body>
</html>```


Thanks
-Night_Stalker


EDIT!!!   ok i know this is so random. but if i pinged 127.1.1.0 and looped. how much would I lag? lol

ghost's Avatar
0 0

function navigate() is broken, clearly.

Edit: And also; scr.


Night_Stalker's Avatar
Member
0 0

They need to unban you man. :ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja::ninja:


ghost's Avatar
0 0

Night_Stalker wrote: EDIT!!! ok i know this is so random. but if i pinged 127.1.1.0 and looped. how much would I lag? lol

This depends on the packet size of your to-be-pinged packages, your available bandwidth and the amount of packages you can send per time-unit.

For example, if you could ping five megabytes of data per second, you would die within a very short timespan.

If you ping 50000 bytes every second, you would lag a little, probably. You can test it with your command-prompt in windows, actually. Type "ping -?" and specify some options. Open multiple CMD prompts to really get it going.


ghost's Avatar
0 0

Html…. Is this still considered a programming language? As a markup language it really shouldnt be. <Off topic> Yeah I dont like spyware but I still sent Mr. Cheese a Pm to have him unbanned. He's an essential part of this community. Theres good and bad in this world, cant kill somebody just because they have a knack for not containing anger at ignorance.


ghost's Avatar
0 0

Mephisto wrote: [quote]K_I_N_G wrote: What language did you write this in? Yeah total nub question, just not much of a programmer.

http://en.wikipedia.org/wiki/HTML_Application[/quote]

Yeah, I just skimmed over it and assumed I wouldnt know it lol. After a second glance I realized it was html.


ghost's Avatar
0 0

K_I_N_G wrote: Yeah, I just skimmed over it and assumed I wouldnt know it lol. After a second glance I realized it was html.

For the most part it is HTML, but you should run it with the .hta extension, offline, for the full effect.


Uber0n's Avatar
Member
0 0

Night_Stalker wrote: if i pinged 127.1.1.0 and looped. how much would I lag? lol Spyware (or Mephisto, haha) has already answered this, but I just wanted to clarify that localhost is most commonly written as 127.0.0.1 and not 127.1.1.0 (although the whole 127...* is a loopback address, so both work) ;)