So I am working with a website in C#/ASP.NET Visual Studio 2012 .Net4.5. The problem I am having is a simple button. The website is published using the Visual Studio Publish and It is configured for release. This creates the dlls and files in a directory which are then pushed to a development server. The Application pool points to this directory. Pushing the button should call C# code that is in the cs file (but now in a dll since it is pushed). This works fine in firefox and IE however in Chrome it merely refreshes the page and nothing happens. Which is weird. Some Example codeIn the .aspx.cs file:\[code\] protected void btnCreate_Click(object sender, EventArgs e) { // redirect to create page Response.Redirect("~/Schedule/Create.aspx"); }\[/code\]And in the .aspx file\[code\] <asp:Button ID="btnCreate" runat="server" CssClass="btn btn-inverse" Text="Create Shift" OnClick="btnCreate_Click" />\[/code\]I just don't understand why something so simple would not work in Chrome.I should probably add that the page works as intended when debugging on local machine in google chrome. This is why I think it is something with how chrome reads dlls?