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;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top