This is a migrated thread and some comments may be shown as answers.

How could i Insert Initial Caps in sql 2005

0 Answers 24 Views
UI for ASP.NET AJAX in ASP.NET MVC
This is a migrated thread and some comments may be shown as answers.
Tamim
Top achievements
Rank 1
Tamim asked on 08 Oct 2012, 06:03 AM
 See my screen shot.
 I have typed in Group code/name in Initial Caps.
 how to data Insert in same method(For Initial Caps)
 
This my coding
if (e.CommandName == RadGrid.PerformInsertCommandName)
            {
                if (e.Item is GridEditFormItem)
                {
                   GridEditFormItem item = (GridEditFormItem)e.Item;
                    RadTextBox groupcode = (RadTextBox)item.FindControl("groupcode");
                    RadTextBox groupname = (RadTextBox)item.FindControl("groupname");

                    oDSGroupMaster.groupcode = groupcode.Text;
                    oDSGroupMaster.groupname = groupname.Text;
                    oDSGroupMaster.status = "ADD";
                }
           }

No answers yet. Maybe you can help?

Tags
UI for ASP.NET AJAX in ASP.NET MVC
Asked by
Tamim
Top achievements
Rank 1
Share this question
or