Search Results

0
votes

What are the most common, typical things to AVOID coding into my ASP.NET app in order for it to run under Medium Trust on a shared host?

Make sure any third party libraries/frameworks (Castle comes to mind) are build (or can be built) in medium trust. …
1
vote

ASP.NET MVC/jQuery: Inplace Editing

Store the markup for the edit in a variable, store the current markup before the edit in a variable (so you can revert if the cancel button is pressed) and then switch it out using jquery: …
0
votes

JQuery Click event on asp:button

ASP.NET adds to you id (example: id "selectButton" becomes "ctl00_middleContent_gvPeople_ctl04_selectButton"); Use the jquery syntax to search for the part of the id that doesn't change. …