A bit of help for an old PHP coder?<BR><BR>In PHP I can set a variable name within a variable as in:<BR><BR>$a = "hello";<BR>$$a = "world";<BR><BR>The output of echo "$hello"; is then world<BR>echo "$a ${$a}"; would produce hello world<BR><BR>How can I do this in ASP.NET?I understand this syntax but in ASP.NET, I'll be using VB.NET to demonstrate:<BR><BR>Dim strMyFirstVariable as String<BR>strMyFirstVariable = "Hello"<BR><BR>Dim strMySecondVariable as String<BR>strMySecondVariable = "World"<BR><BR>Dim strOutPut<BR>strOutPut = strMyFirstVariable & " " & strMySecondVariable<BR><BR>'Then do whatever you want with the variable "strOutPut"<BR>'You coul either place its value in a <asp:label> or<BR>'make a simple "Response.Write strOutPut" which I'm assuming<BR>'its the same thing as "echo" in PHP.Change :<BR><BR>Dim strOutPut<BR><BR>TO :<BR><BR>Dim strOutPut as String<BR><BR><BR><BR>