all groups > asp.net building controls > september 2006 > threads for september 8 - 14, 2006
Filter by week: 1 2 3 4 5
Composite Control as Template ...
Posted by Marc Castrechini at 9/14/2006 5:17:37 PM
Currently I have a composite control that has some base functionality that I
want to use for the base of a number of different controls. It has a
multiview to manage a display state and an edit state and a number of
buttons (Edit, Save, Cancel) to drive the display. Furthermore, I've
imple... more >>
How do I stop this javascript from being emitted?
Posted by paul.hester NO[at]SPAM gmail.com at 9/14/2006 4:06:45 PM
Hi all,
I have a fairly basic page with some text boxes, validators and submit
buttons. I have "EnableClientScript" set to false for all the
validators and "enableEventValidation" set to false in the pages
section of the web.config file. Whenever a validator is present on the
page, the follow... more >>
How to implement interface's method in aspx?
Posted by yp.yean NO[at]SPAM gmail.com at 9/13/2006 12:36:09 AM
Hello,
I have a ASP.NET control with interface called "INamingRule". The
interface structure as follows:
public interface INamingRule
{
string GenerateName ();
}
Now I want to let ASP.NET application developers to develop their own
naming rule by implement GenerateName() method ... more >>
Global Events that all instances of a control handles
Posted by Phil at 9/11/2006 5:03:52 PM
I have a user control (called MyControl that inherits from
CompositeControl). This control will raise an event when the user changes
the color of the control. (MyControl.ColorChange). Inside the code for
MyControl, I also listen and handle the event (ColorChange). - This actually
implement... more >>
Newbie, how to display a messagebox always on top
Posted by verci at 9/11/2006 10:14:33 AM
Hi, sorry if this seems stupid, please have patience.
I'm running Win XP sp2, VS 2005 Tem, SQL Sever 2005, I've been using a
gridview to display my DB information, on the Gridview_RowUpadating event
handler I validate if the value entered already exist en the DB using the
following.
Prot... more >>
- Dynamic controls question
Posted by nickname at 9/11/2006 9:36:23 AM
I have a Table in my page. I must load some webcontrols dynamically
into this table, after the click of a button. These dynamic controls
can fire events. They also must keep their viewstate (so I must add
them in the Init phase).
Ok... after the button is clicked I am able to load the dynamic
... more >>
image resources
Posted by Jon Paal at 9/10/2006 9:25:53 AM
1] how can images be stored as resources in a dll and
2] how to retrieve them for usage in a custom assembly ?
... more >>
ugly exception messages
Posted by Jon Paal at 9/9/2006 11:07:26 AM
how can I get a better looking exception error message to display, instead of the standard error page from asp.net when throwing an
exception like:
If allowExceptions And license Is Nothing Then
If errorMessage Is Nothing Then
Throw New LicenseException(... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
"Text is not allowed between the opening and closing tag"?
Posted by Dave at 9/8/2006 8:21:01 AM
Here's my custom control (taken and modified from ASP.NET Unleashed 2.0)...
<cc1:ImageRotator ID="ImageRotator1" runat="server">
<cc1:ImageItem AlternateText="first item..." />
<cc1:ImageItem AlternateText="second item..." />
<cc1:ImageItem>abc</cc1:ImageItem> <--... more >>
|