GUI output differs from local vs production

Posted by user279521 on Stack Overflow See other posts from Stack Overflow or by user279521
Published on 2010-04-12T19:21:24Z Indexed on 2010/04/12 19:22 UTC
Read the original article Hit count: 183

Filed under:
|

I am having a weird experience. I am dynamically creating a row of textboxes at runtime when the user clicks a button.

However, on my local machine the text boxes appear correctly (example [TextBox1] [TextBox2] [TextBox3] [TextBox4] [TextBox5] [TextBox1] [TextBox2] [TextBox3] [TextBox4] [TextBox5] [TextBox1] [TextBox2] [TextBox3] [TextBox4] [TextBox5]

When I run this app on the production, the output side-by-side is: [TextBox1][TextBox1] [TextBox2][TextBox2] [TextBox3][TextBox3] [TextBox4][TextBox4]

The output should be one row of textboxes, then a second row of 5 text boxes

Anyone experience this?

© Stack Overflow or respective owner

Related posts about c#3.5

Related posts about ASP.NET