| Thread | Last Post | Replies |
|
| Is it possible to get the values of Datgrid Controls | 25 Jun 2004 08:19 GMT | 2 |
i want to change the text of hyperlink column cell : Public Sub dgrSuchergebnis_Databound(ByVal sender As System.Object, ByVal e As DataGridItemEventArgs) Dim DatumVertragsabschluss As TableCell = e.Item.Cells(3)
|
| stylesheet not working | 24 Jun 2004 23:02 GMT | 4 |
Under .NET, why doesn't the "class" attribute seem to apply to elements that refer to a specific stylesheet reference? I've verified that the stylesheet is being referenced by creating styles that refer specifically to HTML tags. But if I want to call on a particular style just ...
|
| asp:label not wrapping | 24 Jun 2004 22:11 GMT | 1 |
I have two ASP:LABELs, One of them the words wrap and the other one doesn't. The only difference is that one I'm setting the text property at design time and the other one I'm setting at run-time
|
| ListBox sort | 24 Jun 2004 20:00 GMT | 1 |
Is it possible to sort a web control ListBox? TIA Colin
|
| FindControl not finding dynamic user control - Repeater, Panel, Usercontrol | 24 Jun 2004 17:21 GMT | 5 |
I cut down the code to make this half way understandable... I have read Data Grid girls caution about over use of dynamic controls. I truly believe what I am doing requires dynamically inserted user controls.
|
| IE Web Controls not rendering | 24 Jun 2004 15:54 GMT | 2 |
I have problems with the IE web controls, those not supported by MS, that include TreeView, ToolBar, TabStrip and PageView. I prepared the build from the distribution package (MS doesnt provide a ready to run dll, you must compile your own) and everything worked in the
|
| DataGrid inside WebCustom control | 24 Jun 2004 14:12 GMT | 2 |
I am implemention a composite web custom control. The control only contains to 2 controls: a DataGrid and an ImageButton control. I create the child controls within CreateChildControls method of the web
|
| xml control | 24 Jun 2004 12:49 GMT | 1 |
I'm using the xml-control to read a xml/xsl file - and everything works fine, as long as the file is placed locally. Isn't possible to reference an external xml-fil as xml1.documentsource = http://www.........
|
| LinkButton Inherited from WebControl problem? | 23 Jun 2004 19:54 GMT | 1 |
I'm inheriting a LinkButton from a WebControl.... public class LinkButtonFromWebControl : System.Web.UI.WebControls.WebControl However, in the aspx, if I add the "CssClass=", "CausesValidation=", etc attributes to this control... <Custom:LinkButtonFromWebControl id="LinkButton3" ...
|
| SortCommand not handled | 23 Jun 2004 19:52 GMT | 1 |
I have a composite web custom control which contains a DataGrid control Within the control I register the interest in the SelectedIndexChanged event of the grid. Even if the page is postbacked when the user selects an item on the grid the
|
| DataGrid not rendering | 23 Jun 2004 12:25 GMT | 1 |
I created a composite web custom control which encapsulats a DataGrid control plus some other controls. I overriden the Render method of my custom control and try to render the grid using
|
| Validation Server Controls Not Working | 23 Jun 2004 06:53 GMT | 1 |
Deployed the same code containing validation server controls to two different sites. The controls function on one site, but not the other. Confirmed the versions are the same.
|
| Leave button depressed after being pressed | 23 Jun 2004 03:55 GMT | 2 |
Hey all, can the asp:button be used like a toggle button? I don't really need to use the asp:button, I basically just need a toggle button that looks like a regular input button that will stay depressed once a user presses it. I plan on having two buttons (A and B) on a webpage. ...
|
| Assign an attribute to all my web controls | 22 Jun 2004 16:36 GMT | 2 |
I want assing an attribute to all my web controls, i thought with Page.Controls property but i don?t know how that works. How can i iterate Page.Controls and set an attribute like Enable=false in all my web controls?????
|
| assign dynamic attributes in web controls in aspx file | 21 Jun 2004 15:53 GMT | 4 |
I want to assign dynamic attributes in web controls but in the aspx file directly, is it posible or it works only in code behind?? i thought the follwing code..... <asp:TextBox Runat=Server ID="dt45" ToolTip='<%="Test"%>'/>
|