There's something I used to do in PHP all the time, where I would, typically through a looping structure, continuously and cumulatively assign values to a single variable. I can't seem to accomplish this in ASP. With PHP I could just use the concatenator (a period) followed by the equal sign, like so:
$i = "a";
$i .= "b";
echo $b;
By echoing $b, the result would be "ab". I'm sure there is a way to do this in ASP, but I haven't found it yet.
$i = "a";
$i .= "b";
echo $b;
By echoing $b, the result would be "ab". I'm sure there is a way to do this in ASP, but I haven't found it yet.