Valhalla Legends Archive

Programming => Web Development => Topic started by: Mangix on March 13, 2005, 11:45 PM

Title: VBScript
Post by: Mangix on March 13, 2005, 11:45 PM
how does one rig it so that when i make a field, the user types in lets say DotA, then it would redirect him to a page? im no real expert on HTML VBScript but here goes. Sub i dunno which
If Field = DotA Then
Redirect somewhere
ElseIf Field = Warcraft Then
Redirect Elsewhere
Else
Redirect Elsewhere too.
so how would i do this?
Title: Re: VBScript
Post by: R.a.B.B.i.T on March 14, 2005, 05:21 PM
<meta http-equiv="refresh" content="X;Y">

X = delay in seconds
Y = URL

IE:
<meta http-equiv="refresh" content="5;http://www.google.com/search?q=DotA">

--
[edit]
That's HTML, btw, so you'd use Document.Write (I guess).
Title: Re: VBScript
Post by: quasi-modo on March 14, 2005, 06:54 PM
I am assuming this is for asp classic and this is not a client side implementation of vbscript.


<form action="takeme.asp" method="post">
<input type="text" name="pagename" size="20">
<input type="submit" value="submit">
</form>
<%
dim pagename
pagename=request.form("pagename")
if pagename<>"" then
      response.redirect(pagename)
end If
%>

name this file takeme.asp and then type http://google.com into your input and wahlah you are there.
Title: Re: VBScript
Post by: Mangix on March 19, 2005, 10:39 PM
ummm cant i put in a code similar to this in a .html file?
Title: Re: VBScript
Post by: quasi-modo on March 19, 2005, 11:37 PM
yes... except that client side vbscript is not well supported. You should not use javascript for functional scripting, that is with 10% of the internet not supporting it. Do you know the numbers for client side vbscript? I would be willing to bet that far more than 10% of the internet does not support it. It makes no sense for anyone to use client side vbscript. That is why I figured you wanted the server side implementation.
Title: Re: VBScript
Post by: Mangix on March 20, 2005, 12:45 AM
...

i just want to put an almost blank page on the home of my website and it would have text saying Choose your Destination. then there would be a field below saying where to go to. and thats where i need VBScript cause i saw a site that had this ability with VBScript. i dunno how to do it in HTML cause i dunno the functions for VBScript in HTML. for Stealthbot those are easy.
Title: Re: VBScript
Post by: quasi-modo on March 21, 2005, 12:37 AM
Quote from: Mangix on March 20, 2005, 12:45 AM
...

i just want to put an almost blank page on the home of my website and it would have text saying Choose your Destination. then there would be a field below saying where to go to. and thats where i need VBScript cause i saw a site that had this ability with VBScript. i dunno how to do it in HTML cause i dunno the functions for VBScript in HTML. for Stealthbot those are easy.
The best option would be server side, like I posted above. If you want to do it client side you should do it with javascript, the support would be better. But like I said, if this is going to be something important it must be done server side, otherwise your site will fail for a certain % of your users.
Title: Re: VBScript
Post by: Banana fanna fo fanna on March 21, 2005, 11:42 AM
You want a dropdown, or a textfield?


Also...I thought you were a "VBScript/HTML" expert? :)

Don't bother using VBScript. It's old, outdated, and unsupported, even when used server-side.
Title: Re: VBScript
Post by: quasi-modo on March 21, 2005, 03:11 PM
Quote from: Banana fanna fo fanna on March 21, 2005, 11:42 AM
You want a dropdown, or a textfield?


Also...I thought you were a "VBScript/HTML" expert? :)

Don't bother using VBScript. It's old, outdated, and unsupported, even when used server-side.
I would not call vbscript unsupported when used server side, but outdated yes. It's all about teh .net now.
Title: Re: VBScript
Post by: effect on March 22, 2005, 07:28 AM
Quote from: Mangix on March 22, 2005, 03:03 AM
i am an expert Stealthbot VBScript. Recognize Bitch. anyways thx. ima find some Javascript tutorial and work with that.

oh and the reason i dont know HTML VBScript is cause i dunno any of its functions. for stealthbot i know about all of them.

HOLY SHIT!, My life is now complete, i have found the most funniest, stupidest comment/post what ever, of all time.

I couldnt of made one up better if i tried.........
Title: Re: VBScript
Post by: Mangix on March 22, 2005, 06:22 PM
ROFL. you thought that was sooooooo funny that you put it in your sig lmao. Function Laid(User)
If user = you Then document.write ('/kick ' & User)
Title: Re: VBScript
Post by: Blaze on March 22, 2005, 08:36 PM
Wow, you have no idea what your doing. You didn't even end the function!
Title: Re: VBScript
Post by: effect on March 22, 2005, 10:59 PM
Quote from: Mangix on March 22, 2005, 06:22 PM
ROFL. you thought that was sooooooo funny that you put it in your sig lmao. Function Laid(User)
If user = you Then document.write ('/kick ' & User)


Hmm i see, your trying to rival your other outrageously stupid post, sorry, i just dont have enought space below to qoute them all.
Title: Re: VBScript
Post by: quasi-modo on March 23, 2005, 12:56 AM
Quote from: Blaze on March 22, 2005, 08:36 PM
Wow, you have no idea what your doing. You didn't even end the function!
Not to mention the if statement.
Title: Re: VBScript
Post by: Mangix on March 23, 2005, 05:00 PM
ummmmmmmm no. quasi = WRONG. if the If statement is one line only, there is no need for End If. ask JoeTheOdd if you dont believe me. also i know i didnt end the function. i was in a hurry at the time.
Title: Re: VBScript
Post by: MyndFyre on March 23, 2005, 08:01 PM
Quote from: Mangix on March 22, 2005, 03:03 AM
i am an expert Stealthbot VBScript. Recognize Bitch. anyways thx. ima find some Javascript tutorial and work with that.

oh and the reason i dont know HTML VBScript is cause i dunno any of its functions. for stealthbot i know about all of them.

He's such an expert that he's been put on moderator review @ stealthbot.net because of his idiotic posts.

Quote from: Mangix on March 23, 2005, 05:00 PM
ummmmmmmm no. quasi = WRONG. if the If statement is one line only, there is no need for End If. ask JoeTheOdd if you dont believe me. also i know i didnt end the function. i was in a hurry at the time.
No, that's incorrect.  Visual Basic requires an End If statement because it doesn't know the difference between a one-line and multi-line "If" block because it has no cue for a start of the block, as C-based languages do.  Consider the following two snippets of code:


' code snippet 1
If user = Nothing Then
    nullUsers = nullUsers + 1
End If

MsgBox "Number of null users: " & nullUsers

'code snippet 2
If user = Nothing Then
  nullUsers = nullUsers + 1
MsgBox "Number of null users: " & nullUsers


The first would compile (or execute).  The second would not.  Why?  The second doesn't know if the MsgBox statement belongs to the If user = Nothing clause block or not.  If it does, then there should be an End If according to your logic.  If it does not belong, then they work correctly.  But in the former case, where does the End If statement go?  Does it go before MsgBox, which would make the code snippets behave the same?  Or does it go *after* MsgBox, which would make the code snippets behave differently (the message box would only display if user = Nothing in the second snippet).

This is different than C-based languages.  Consider this:

// snippet 1
if (user == NULL)
  nullUsers ++;
cout << "Number of null users: " << nullUsers << std::endl;

// snippet 2
if (user == NULL)
{
  nullUsers ++;
  cout << "Number of null users: " << nullUsers << std::endl;
}

The opening bracket gives the compiler the clue that it needs to determine if the if statement is a single-statement or multi-statement block.
Title: Re: VBScript
Post by: Newby on March 23, 2005, 09:02 PM
Quote from: MyndFyre on March 23, 2005, 08:01 PM
Quote from: Mangix on March 23, 2005, 05:00 PM
ummmmmmmm no. quasi = WRONG. if the If statement is one line only, there is no need for End If. ask JoeTheOdd if you dont believe me. also i know i didnt end the function. i was in a hurry at the time.
No, that's incorrect.  Visual Basic requires an End If statement because it doesn't know the difference between a one-line and multi-line "If" block because it has no cue for a start of the block, as C-based languages do.  Consider the following two snippets of code:


' code snippet 1
[...]
If user = Nothing Then
  nullUsers = nullUsers + 1
[...]


Actually, one-line "If" statements can all be on one line. At least they could last time I checked.

See the following:


If user = Nothing Then nullUsers = nullUsers + 1
Title: Re: VBScript
Post by: Adron on March 23, 2005, 09:18 PM
Quote from: MyndFyre on March 23, 2005, 08:01 PM
No, that's incorrect.  Visual Basic requires an End If statement because it doesn't know the difference between a one-line and multi-line "If" block because it has no cue for a start of the block, as C-based languages do.

As others have said, Visual Basic supports one-line "If" statements just fine. What you may also want to know is that Visual Basic is even more powerful than C++:  You can have multiple statements in a one-line "If"!


'code snippet 3
If user = Nothing Then nullUsers = nullUsers + 1
MsgBox "Number of null users: " & nullUsers


and then:


'code snippet 4
If user = Nothing Then nullUsers = nullUsers + 1: MsgBox "Found another null user!"
MsgBox "Number of null users: " & nullUsers



Title: Re: VBScript
Post by: MyndFyre on March 23, 2005, 10:19 PM
Oh LoL -- here it never occurred to me that you can just avoid a line break.  :P
Title: Re: VBScript
Post by: Blaze on March 23, 2005, 10:43 PM
Can you do single line if statements in vb.net?

@Mangix: Your such a pro you ask others about the basics of the language your an expert at. Bravo.
Title: Re: VBScript
Post by: Mangix on March 24, 2005, 08:24 PM
Quote from: MyndFyre on March 23, 2005, 08:01 PM
He's such an expert that he's been put on moderator review @ stealthbot.net because of his idiotic posts.
No. its because you are an abusive mod. all i did was ask FrOzeN to use the JavaScript console so he could see if any errors occured. because of that, you warned me and put me on mod review. also im your PM you said that i cant post for 4 days. 4 days have passed. And most of them are because of that Nigga Imhotep. he placed 4 warns on me for posting in the same topic. and the others because i started posting stupid shit in technical support(which i dont do now).
Title: Re: VBScript
Post by: Adron on March 24, 2005, 08:32 PM
Quote from: Mangix on March 24, 2005, 08:24 PM
Quote from: MyndFyre on March 23, 2005, 08:01 PM
He's such an expert that he's been put on moderator review @ stealthbot.net because of his idiotic posts.
No. its because you are an abusive mod. all i did was ask FrOzeN to use the JavaScript console so he could see if any errors occured. because of that, you warned me and put me on mod review. also im your PM you said that i cant post for 4 days. 4 days have passed. And most of them are because of that Nigga Imhotep. he placed 4 warns on me for posting in the same topic. and the others because i started posting stupid shit in technical support(which i dont do now).

*places warning onto Mangix*
Title: Re: VBScript
Post by: Mangix on March 24, 2005, 08:45 PM
i cant see my warns. where are they?
Title: Re: VBScript
Post by: Newby on March 24, 2005, 08:46 PM
Right above your post.
Title: Re: VBScript
Post by: Mangix on March 24, 2005, 08:49 PM
i cant see it. gimme a hint :P.
Title: Re: VBScript
Post by: Banana fanna fo fanna on March 24, 2005, 09:10 PM
Quote from: Mangix on March 24, 2005, 08:49 PM
i cant see it. gimme a hint :P.

wow.
Title: Re: VBScript
Post by: MyndFyre on March 24, 2005, 10:22 PM
Quote from: Mangix on March 24, 2005, 08:24 PM
Quote from: MyndFyre on March 23, 2005, 08:01 PM
He's such an expert that he's been put on moderator review @ stealthbot.net because of his idiotic posts.
No. its because you are an abusive mod. all i did was ask FrOzeN to use the JavaScript console so he could see if any errors occured. because of that, you warned me and put me on mod review. also im your PM you said that i cant post for 4 days. 4 days have passed. And most of them are because of that Nigga Imhotep. he placed 4 warns on me for posting in the same topic. and the others because i started posting stupid shit in technical support(which i dont do now).

Well maybe you should stop posting idiotic things?
Title: Re: VBScript
Post by: Mangix on March 24, 2005, 10:59 PM
believe me i have. read my new posts :P.
Title: Re: VBScript
Post by: quasi-modo on March 25, 2005, 03:32 PM
Quote from: Mangix on March 23, 2005, 05:00 PM
if the If statement is one line only, there is no need for End If
I remember now... it has just been so long since I have been sloppy and put all my code on one line. I usually have my code on several lines, indent, and even comment my code  ::)
Title: Re: VBScript
Post by: Mangix on March 25, 2005, 06:25 PM
Quote from: Blaze on March 23, 2005, 10:43 PM
Can you do single line if statements in vb.net?

@Mangix: Your such a pro you ask others about the basics of the language your an expert at. Bravo.
gimme all the functions of HTML and ill do it. i only know the functions for Stealthbot.
Title: Re: VBScript
Post by: Banana fanna fo fanna on March 25, 2005, 11:23 PM
There are no "functions of HTML". Perhaps you're looking for a) DOM API b) ASP API c) ASP.NET API
Title: Re: VBScript
Post by: Blaze on March 26, 2005, 01:18 PM
Quote from: quasi-modo on March 25, 2005, 03:32 PM
I remember now... it has just been so long since I have been sloppy and put all my code on one line. I usually have my code on several lines, indent, and even comment my code ::)
I know what you mean but a simple If len(Message) = 0 Then Exit Sub is efficient and very easy to read still.
Title: Re: VBScript
Post by: Joe[x86] on April 05, 2005, 10:03 PM
Please excuseme bringing up this rather oldish topic but...

Quote from: Magnix's TitleVBScript/HTML Expert

I *truely* hope he can handle this.
Title: Re: VBScript
Post by: Mangix on April 06, 2005, 08:49 AM
handle what? also someone gimme all the docoment.write and .ReadURL stuff.
Title: Re: VBScript
Post by: Joe[x86] on April 06, 2005, 03:14 PM
.....

<script language="JavaScript">
    document.Write("Go learn VB before calling yourself an expert, is what I meant.");
</script>
Title: Re: VBScript
Post by: Mangix on April 06, 2005, 07:16 PM
VB sucks. go C++. anyways do you know any of the user document. functions besides write?
Title: Re: VBScript
Post by: Banana fanna fo fanna on April 06, 2005, 08:43 PM
Quote from: Mangix on April 06, 2005, 07:16 PM
VB sucks. go C++. anyways do you know any of the user document. functions besides write?

Why?
Title: Re: VBScript
Post by: MyndFyre on April 06, 2005, 08:53 PM
Quote from: Mangix on April 06, 2005, 07:16 PM
VB sucks. go C++. anyways do you know any of the user document. functions besides write?

noob.  It's called searching (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/objects/obj_document.asp).
Title: Re: VBScript
Post by: Mangix on April 07, 2005, 01:41 AM
thats badly referenced. it should be in the JS/VBScript section :P.