P
Peter
Hi
In VBScript, I can use a array with dynamic indexing like the following
-------------------------
Dim SampleArray, DynamicStringIndex, DataValue
...
...
DynamicStringIndex = "hello"
DataValue = "contents"
SampleArray(DynamicStringIndex) = DataValue
...
...
SampleArray.Remove(DynamicStringIndex)
-------------------------
Can someone show me how to accomplish the same in C# javascript in an ASP.NET web page (.aspx)?
I would also like to how how can I loop through a binded Datagrid Datasource to perform some java scripts ?
Thanks
Peter
In VBScript, I can use a array with dynamic indexing like the following
-------------------------
Dim SampleArray, DynamicStringIndex, DataValue
...
...
DynamicStringIndex = "hello"
DataValue = "contents"
SampleArray(DynamicStringIndex) = DataValue
...
...
SampleArray.Remove(DynamicStringIndex)
-------------------------
Can someone show me how to accomplish the same in C# javascript in an ASP.NET web page (.aspx)?
I would also like to how how can I loop through a binded Datagrid Datasource to perform some java scripts ?
Thanks
Peter