Tagged Questions

0
votes
2answers
43 views

How to make an HtmlGenericControl attribute runat = “server”.to access it from the code?

I face a strange problem to access some HtmlGenericControl which created in run time . How to make the HtmlGenericControl runat ="server"?so i can access it HtmlGenericControl myli = new ...
0
votes
1answer
222 views

Accessing a HtmlGenericControl on a MasterPage from a ContentPage

so I've got the following structures; Start.master (Start.master.cs) Contains a Method DoSomething(string Text) { _MyHtmlControl.InnerText = Text; } And the HtmlGenericControl ID'ed ...