any one have an idea of how could i build a mobile control such as a label or text in the run time.
using asp.net c#
my (Ms visual studio) is 2005
thx alot
Printable View
any one have an idea of how could i build a mobile control such as a label or text in the run time.
using asp.net c#
my (Ms visual studio) is 2005
thx alot
i got the answer
this gives me what i wantVB Code:
System.Web.UI.MobileControls.Label label = new System.Web.UI.MobileControls.Label(); label.Text = "Hi avrail"; Form1.Controls.Add(label);
thanks alot