I have a C# .net site built with Dreamweaver MX2004. I have several screens to
allow for updating of tables and they use the <MM:UPDATE ... /> style tag
inserted by Dreamweaver. I also have added a detail Grid to several of these
pages with advanced features supported by codebehind pages in Studio.NET. My
problem is the Update tag embedded in the HTML seems to take precedence in any
postback situation. The OnEditCommand='EditDetail' routine (which is in a
codebehind page) mentioned in my grids XML properties is never fired and
instead the record is updated instead (the dreamweaver tag is executed). What
is the best way to make codebehind pages and dreamweaver embedded server
controls co-exist. (if there is such a way). Even using Dreamweaver to evoke
inplace editing of the detail records in the grid (which is not really what I
want) doesn't work.. Once again.. clicking the Edit link (or button) in the
grid in essence calls the MM:UPDATE tag (to save the record) on the page. I
understand I could move everything to the codebehind page (and do my updates
and such from back there). But the dreamweaver functionality is so fast I
would like these two tools to work together if possible.