adsense

Tuesday, May 28, 2013

jQuery Easy UI

If you have ever dream of using a jquery grid and other tools , have a look at following url which provides bunch of jQuery supported controls. Worth a try..


http://www.jeasyui.com/demo/main/index.php

Cheers
Samitha

Thursday, May 9, 2013

Pass two arguments to DataNavigateUrlFormatString

Hyperlink Column in a Gridview can be easily accomadated to accept two or more arguments as displayed below.

 <asp:GridView ID=”GridView1″ runat=”server” AutoGenerateColumns=”False” >
<Columns>

<asp:HyperLinkField DataNavigateUrlFields=”ProducrID,Company” DataNavigateUrlFormatString=”ProductDetails.aspx?ProducrID={0}&Company={1}” Text=”View Student” />
<asp:BoundField DataField=”Description” HeaderText=”Description"  />
</Columns>
</asp:GridView>   

Cheers
Samitha