Click here to Skip to main content
16,005,734 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: html history Pin
Tim Zorn20-Aug-05 12:38
Tim Zorn20-Aug-05 12:38 
GeneralRe: html history Pin
Vecta21-Aug-05 21:55
Vecta21-Aug-05 21:55 
GeneralDynamic Text Box Pin
delnaz15-Aug-05 20:12
delnaz15-Aug-05 20:12 
Generalaccessing server control programatically Pin
wpcolleen15-Aug-05 2:01
wpcolleen15-Aug-05 2:01 
GeneralRe: accessing server control programatically Pin
DavidNohejl15-Aug-05 2:46
DavidNohejl15-Aug-05 2:46 
GeneralAsp Split and Join Pin
mjaywoods214-Aug-05 23:23
sussmjaywoods214-Aug-05 23:23 
GeneralRe: Asp Split and Join Pin
Member 55690214-Aug-05 23:49
Member 55690214-Aug-05 23:49 
GeneralRe: Asp Split and Join Pin
Guffa15-Aug-05 0:41
Guffa15-Aug-05 0:41 
Don't dimension agesplit as an array. It's not an array, it's a variant that contains an array.

When you dimension an array in VBScript, you don't give the number of items, but the highest index to use. If you want an array with three items, the highest index will be two.

Dim ages, agesplit, strSentence<br />
Dim OneDimArray(2)<br />
<br />
ages = Request.QueryString("age1")<br />
agesplit = Split(ages, ",")<br />
<br />
one = agesplit(0)<br />
two = agesplit(1)<br />
three = agesplit(2)<br />
<br />
OneDimArray(2) = one<br />
OneDimArray(0) = two<br />
OneDimArray(1) = three<br />
<br />
strSentence = join(OneDimArray, ",")


---
b { font-weight: normal; }

GeneralRe: Asp Split and Join Pin
mjaywoods215-Aug-05 0:51
sussmjaywoods215-Aug-05 0:51 
GeneralRe: Asp Split and Join Pin
Guffa15-Aug-05 7:29
Guffa15-Aug-05 7:29 
GeneralRe: Asp Split and Join Pin
Anonymous15-Aug-05 4:08
Anonymous15-Aug-05 4:08 
GeneralWeb App Storing Documents in SQL Server Pin
Mike L.14-Aug-05 21:37
Mike L.14-Aug-05 21:37 
GeneralRe: Web App Storing Documents in SQL Server Pin
minhpc_bk14-Aug-05 23:50
minhpc_bk14-Aug-05 23:50 
GeneralISAPI extension with non browser apps Pin
balu chettri13-Aug-05 21:31
balu chettri13-Aug-05 21:31 
GeneralRe: ISAPI extension with non browser apps Pin
Vasudevan Deepak Kumar14-Aug-05 1:59
Vasudevan Deepak Kumar14-Aug-05 1:59 
GeneralJavascript problem Pin
fakefur12-Aug-05 13:54
fakefur12-Aug-05 13:54 
GeneralRe: Javascript problem Pin
Guffa12-Aug-05 22:23
Guffa12-Aug-05 22:23 
GeneralRe: Javascript problem Pin
fakefur14-Aug-05 16:24
fakefur14-Aug-05 16:24 
GeneralRe: Javascript problem Pin
Guffa14-Aug-05 19:08
Guffa14-Aug-05 19:08 
GeneralVery newb question Pin
Esmo200012-Aug-05 9:17
Esmo200012-Aug-05 9:17 
GeneralRe: Very newb question Pin
fakefur12-Aug-05 15:01
fakefur12-Aug-05 15:01 
GeneralUser controlled auto refresh Pin
RadioButton12-Aug-05 6:32
RadioButton12-Aug-05 6:32 
GeneralRe: User controlled auto refresh Pin
Vasudevan Deepak Kumar14-Aug-05 2:01
Vasudevan Deepak Kumar14-Aug-05 2:01 
GeneralHELP!! UREGENT. with publishing my ASP on APACHE Pin
evlxtc12-Aug-05 2:02
evlxtc12-Aug-05 2:02 
GeneralRe: HELP!! UREGENT. with publishing my ASP on APACHE Pin
fakefur12-Aug-05 13:59
fakefur12-Aug-05 13:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.