I ran into an issue using the DetailsView with and ObjectDataSource and paging. In this setup the DetailsView would populate data based off the user’s selection from a dropdown. The paging itself was not the issue that worked just fine. The issue I had was that if the DetailsView displayed data with multiple pages and the user selected a page other than the first and then picked a different value from the dropdown that only had one page to display in the DetailsView it would default to the EmptyDataTemplate. ......
Hi everyone, If you haven’t heard Google will increase their ad targeting powers on April 8th (they did buy DoubleClick after all). I am not here to bash Google’s decision, I use their site all the time. However here is link for a plug-in to block their surfing watching cookie (the process is cookie based). The plug-in works for either Firefox or IE and Opera I think. There are instructions for Safari and Chrome to manually make the changes (I didn’t check these out, I don’t use either). It is from ......
I was recently working on a GridView and needed to add a calendar for two of the columns while in edit mode. I added the AJAX CalendarExtender and it returned the selected date with no issues. <EditItemTemplate > <asp:TextBox ID="txtDate1" runat="server" Text='<%# BIND("Date1", "{0: MM/dd/yyyy}") %>'></asp:TextBox> <cc1:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtDate1" PopupPosition="Right" CssClass="caltheme" > </cc1:CalendarExtender> ......