Displaying month-wise date in ASP.NET GridView
I have an ASP.NET GridView in which i want to show dates from selected month and year. Month and year fields are DropDownList and bound to XML data source. Is there any easy to do that or i 开发者_StackOverflowhave to use Code behind to add dates using iteration.
You should be able to, although you (may) have to be careful with your XML. Take a look at this SO thread, where Darin indicates that there was a bug in XmlDataSource which means you can only use attributes rather than node values -- and see if it helps.
精彩评论