Showing posts with label c#. Show all posts
Showing posts with label c#. Show all posts

Monday, December 28, 2009

asp.net - gridview hücrelerindeki verileri html olarak formatlasın

Zaten ne demeye varsayılan olarak html formatlamıyorsa anlamadım.
Şöyle yapmak gerekebilir :

protected void raporGrid_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Cells[index].Text = Server.HtmlDecode(e.Row.Cells[index].Text);
        }
    }


yok yok ben neden yıllardır asp.net'ten uzak durduğumu şimdi anladım. işim biter bitmez php ile devam!

Tuesday, December 22, 2009

asp.net repeater içinde kayıt numarası

Kayıtın kaçıncı kayıt olduğunu (indisini) böyle alabilirsiniz : Container.ItemIndex

yani :

<asp:repeater id="Repeater1" runat="server">
        <itemtemplate>
                Kayıt : <%# Container.ItemIndex %>
        </itemtemplate>
        <separatortemplate>
                <br />
        </separatortemplate>
</asp:repeater>