or

function cUpper(cObj) { cObj.value = cObj.value.toUpperCase(); } aspx: <asp:TextBox ID="TextBox1" runat="server" OnKeyup="return cUpper(this)"></asp:TextBox><telerik:RadComboBox runat="server" EmptyMessage="Choose Port Cd." EnableLoadOnDemand="True" HighlightTemplatedItems="True" DropDownWidth="500px" Skin="Telerik" Height="150px" Width="150px" ID="Rc_prtcd" AutoPostBack="True" ShowMoreResultsBox="true" EnableVirtualScrolling="true"> <HeaderTemplate> <table cellpadding="0" cellspacing="0" style="width: 100%"> <tr> <td style="width: 100px;"> Port Code </td> <td style="width: 200px;"> Port Name </td> <td style="width: 200px;"> Country Name </td> </tr> </table> </HeaderTemplate> <ItemTemplate> <table cellpadding="0" cellspacing="0" style="width: 100%"> <tr> <td style="width: 100px;"> <%# DataBinder.Eval(Container, "Text")%> </td> <td style="width: 200px;"> <%#DataBinder.Eval(Container, "Attributes['Port_Name']")%> </td> <td style="width: 200px;"> <%#DataBinder.Eval(Container, "Attributes['Country_Name']")%> </td> </tr> <hr /> </table> </ItemTemplate> <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> </telerik:RadComboBox>
<asp:ImageButton ID="_imgbtnNew" OnCommand="_imgbtnNew_Command" runat="server" ImageUrl="~/site_images/new.png"ImageAlign="AbsMiddle" Height="15px" OnClientClick="javascript:return confirm('Are you sure?');" ></asp:ImageButton><telerik:RadComboBox ID="cboDateRange" runat="server" width="175px" DropDownWidth="325px" CloseDropDownOnBlur="False" Font-Bold="True" AllowCustomText="false"> <ItemTemplate> <asp:Label ID="lblDateRange" runat="server" Text="Date Range" Font-Bold="true"></asp:Label><br /> <div id="divStartDateSelected" class="divFloatLeft"> <telerik:RadDatePicker ID="dateStartDate" runat="server" Width="90px" > <DateInput SelectionOnFocus="SelectAll"> </DateInput> <Calendar ShowRowHeaders="false"></Calendar> </telerik:RadDatePicker> </div> <div class="divFloatLeft"> <asp:Label ID="lblDateRangeDash" runat="server" Text="-"></asp:Label> </div> <div id="divEndDateSelected" class="divFloatLeft"> <telerik:RadDatePicker ID="dateEndDate" runat="server" Width="90px"> <DateInput SelectionOnFocus="SelectAll"> </DateInput> <Calendar ShowRowHeaders="false"></Calendar> </telerik:RadDatePicker> </div> </ItemTemplate> <Items> <telerik:RadComboBoxItem Text="" Selected="True" /> </Items></telerik:RadComboBox>