Change Width of WinForms user control on Web page

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I have a WinForms user control and I want to change the width using a client
script on a when page. Can this be done?

I was thinking something along the lines of:

function resize()
{
var o = document.myobject;
o.Width = 800;
}
 
Back
Top