dienql
07-06-2007, 09:30 AM
In Action Script i created a list buttons look like:
for (var i=0;i<10;i++)
{
//createButton(buttonLabel, x, y)
createButton("button "+ i, 150, 250+i*20);
}
so will be generic 10 buttons.
Now i wanna transfer 2 value (number of buttons and array string labels)
from ASP.NET (C#) web form to control creation of buttons,
Anyone can tell me the way to do it, or can tell me it's impossible or possible with that way?
Thank you very much!
for (var i=0;i<10;i++)
{
//createButton(buttonLabel, x, y)
createButton("button "+ i, 150, 250+i*20);
}
so will be generic 10 buttons.
Now i wanna transfer 2 value (number of buttons and array string labels)
from ASP.NET (C#) web form to control creation of buttons,
Anyone can tell me the way to do it, or can tell me it's impossible or possible with that way?
Thank you very much!