i am reding data from database in a bulleted list as follow
<asp:BulletedList ID="BulletedList1" runat="server"
DataSourceID="SqlDataSource1" DataTextField="description"
DataValueField="id">
</asp:BulletedList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:chaaapaConnectionString4 %>"
SelectCommand="SELECT * FROM [quiz]"></asp:SqlDataSource>
i want this to appear as a link. how can i do this?
you can try with DisplayMode=”HyperLink”