Posted on: 12/16/2014 10:12:25 AM | Views : 422

I am curious why I see a function I make to Load the combo box start with upper cause LoadComboBox() etc and then when VS creates an event for a control it does it lower case?
Why is that?
Is it just preference?
Example:
protected void btnReset_Click(object sender, EventArgs e) { cbShowAllRecords.Checked = false; cmbDepartment.SelectedIndex = 0; cmbEmail.SelectedIndex = 0; cmbEmail.Text = string.Empty; cmbEmail.SelectedValue = string.Empty; rgTestCBO.MasterTableView.CurrentPageIndex = 0; rgTestCBO.DataSource = null; rgTestCBO.Rebind(); } private void LoadComboBox() { // Code to Load ComboBox.... } <telerik:RadButton runat="server" ID="btnReset" Text="Reset" OnClick="btnReset_Cl ...

Go to the complete details ...