You can also use textBox.SelectAll().
J
Jim MacDonald 0
@Jim MacDonald 0
Posts
-
Keyboard in C# -
SQL anyone ?This is just a shot in the dark but you could take a look at addng a COM reference to the Microsoft SQLDMO Object Library. You might find what you need in there.
-
DataGrid binding.You can also bind a datagrid to a Collection or any object that implements the IList or IListSource Interface.
-
Add index in repeater/datalist/datagridI think the following will work as well:
-
confused about post back behavior...You can try setting SmartNavigation="true" in the tag on your aspx page: <%@ Page language="c#" Codebehind="SmartNav_Test.aspx.cs" SmartNavigation="true" AutoEventWireup="false" Inherits="Web_App.SmartNav_Test" %> Hope this helps.
-
How do I display NO text next to items in a CheckBoxList??You could also loop through your list after you databind and either remove the text or add your custom labels. foreach (ListItem li in checkBoxList.Items) { li.Text = String.Empty; }