| Thread | Last Post | Replies |
|
| User Control access fails in debug mode, works in release mode | 31 Jan 2007 00:21 GMT | 1 |
I have a custom usercontrol in ASP.NET 1.1 named BreadCrumb.ascx which contains another control also called BreadCrumb.ascx within itself. Thus the parent BreadCrumb.ascx control is simply a container of the real (child) Breadcrumb.ascx control.
|
| Using ITemplate as property of a custom control | 31 Jan 2007 00:18 GMT | 3 |
I am using ITemplate as property of a custom control in order to get the following struct: <test:mycontrol> <myTemplate>
|
| Expresion Expected Error - VS 2005 - Migrated from VS 2003 | 27 Jan 2007 03:48 GMT | 2 |
I have an asp.net project that I have migrated to VS 2005. The product had zero errors in vs2003 and for the most part functions properly in 2005 except for one complicated page where I am receiving an Expression Expected error on some very simplistic code. Please forgive the ...
|
| Tpyesystem problem with ASP.NET UserControl. | 26 Jan 2007 15:26 GMT | 3 |
After migration from ASP1.0 to ASP 2.0 I have the following problem. The migrated code does not compile. I get an error: "Cannot implicitly convert type 'NetView.WebUI.ctlSubDevice' to 'ASP.distributor_ctlsubdevice_ascx'. An explicit conversion exists ...."
|
| Designing UserControls in VS2005 Pro using stylesheets (css) | 24 Jan 2007 19:18 GMT | 2 |
Hi experts, when trying to design a UserControl (ascx) using the designeditor of VisualStudio2005 Pro: How can I embedd a stylesheet to make a perfect layout ?
|
| Control with no closing tag | 22 Jan 2007 20:50 GMT | 2 |
I'm trying to build a custom control that doesn't have a closing tag. For example, right now when I create a control from the IDE I get this: <cc1:MyControl runat="server" ID="SomeId"></cc1:MyControl> I'd like it to be:
|
| Collection Property in web custom control | 22 Jan 2007 10:22 GMT | 5 |
I'm building a custom control. I would like that on the control you can set some 'rights' For that I have an enum: public enum GroupRights
|
| Setting Inner Tag Content at Design Time programmatically | 22 Jan 2007 09:21 GMT | 1 |
I am creating a web control. At design time I would like the designer to inspect the control being hosted, to see if there is any inner content and if there isn't then programmatically set the server control's markup. for example <My:Control runat="server"></My:Control> would be ...
|
| Custom webcontrol with reference to another one | 20 Jan 2007 06:44 GMT | 1 |
I've been working on a custom webcontrol with a property that references another webcontrol from the same page. In my special test case I have a Person_firstname1 control and a PersonSource1 control. The Person_firstname1 have a property of the
|
| Connection Problem in Publishing Website | 19 Jan 2007 18:33 GMT | 1 |
I have a site with several pages and most of them have SqlDataScource controls that connect the page to my local SQL Server. How can I copy a Website to a remote server and change all the connections to the remote SQL server? Changing the connections before
|
| Validator message disappeared after post back | 17 Jan 2007 14:52 GMT | 8 |
I have a compositecontrol contain a textbox (txtPhoneNumber) and a RegularExpressionValidator. I tested in a page, the validation seems work fine until post back, the validation message disappeared after post back while the text in the phone
|
| strip span tag from text-only templates | 17 Jan 2007 09:13 GMT | 1 |
I am building a control that renders as a table, and I created two templates for my users to "wrap" the table with whatever HTML tags they want. Like this <topWrapperTemplate></topWrapperTemplate> <table>.....</table>
|
| Custom Control - Collection Property | 17 Jan 2007 03:33 GMT | 1 |
Hey gang. I am taking the task of trying to learn how to write custom web controls. I have started with inheriting from the VS 2005 default which is UserControl. I am implementing collection and just basic properties in my control and
|
| GetPostBackEventReference - dynamic argument | 16 Jan 2007 16:56 GMT | 2 |
I'm building a sever control that is essentially a container that holds a bunch of DIVs. I want the click event on any of the DIVs to bubble up to the container which calls the __doPostback procedure as given by the server-side call to ScriptManager.GetPostBackEventReference(Me, ...
|
| custom web control +client-side javascript + postback | 10 Jan 2007 10:51 GMT | 1 |
I am trying to create a new Web Control (ASP.NET 1.1) that contains among other textboxes. The content of these textboxes (runat=server) might be changed by client-side Javascript code, like: document.getElementById('txt...').value='...';
|