building horizontal line dynamically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
what's the best way to build the html horizontal line dynamically and then
add it to myPanel?

thanks,
rodchar
 
rodchar said:
hey all,
what's the best way to build the html horizontal line dynamically and then
add it to myPanel?

thanks,
rodchar

I think:

myPanel.Controls.Add(new HtmlGenericControl("hr"));
 
Back
Top