Tuesday, December 4, 2012

Adding Symbol like as ❏ and ❑ with string in asp.net

There is two sysbole  with shadow:

❏
❑

as ❏ and ❑

You can use it  and display like :


❏ Organising necessary form of order to transfer county court possession order to the High Court

❏ Shergroup Legal to attend High Court in London to organisecollection of necessary paperwork

❏ Experienced eviction locksmith on site to change locks and deal with roller shutters etc

❏ Shergroup Security to handle post eviction security services

❏ Shergroup Security to arrange post eviction cleansing

❏ Shergroup Security Risk Assessment Report to highlight measures to prevent further trespass or damage to      property

❏ Any other service not listed here – let us help you complete your eviction process


For this i have use various check box tick value and concatenated and displayed with this function

 private string ConcatCheckBoxText(CheckBox chkBox)
    {
        string str = chkBox.Checked ? "&#x274f; " + chkBox.Text + "<br/><br/>" : "";
        return str;
    }

This bold value in above function is responsible for adding these symbols  ❏ and ❑  in c#

No comments:

Post a Comment