I have an ASP.NET Web Application that lets the user scan a barcode into a TextBox, which once the scan completes it searches a SQL Server database and updates a Label with some additional information. This works fine.
My manager has asked me to add a Button to reset the value of the TextBox. I add a Button object in Design View from the Toolbox, and I've code to do a Response.Redirect() back to the same aspx page. This works as intended when I run it inside Visual Studio at development time. However, when I publish the application, the button doesn't even appear on the form.
If you select that area where the button should be, there's a blue line instead. It's like there's a dependency that's not being built into the application files that are published. Alternately, it could be that the button is being blocked either by IIS or by the browser. Any suggestions or ideas?