all groups > asp.net building controls > october 2004 > threads for october 8 - 14, 2004
Filter by week: 1 2 3 4 5
Custom DataGrid Control !
Posted by Ankur Goyal at 10/14/2004 11:18:10 AM
Hi All!
Is it possible to define a DataGrid User control for a ASP application so
that all the changes made to this control could reflect to all the grids
used in applications.
Please refer any links to define Custom Datagrid user control.
Note that all the grids will be binded to diffe... more >>
WebControl containing HTML
Posted by The_Dane at 10/14/2004 8:23:03 AM
Is it possible to make a control something like this :
<SSL:GROUPBOX runat=server Title=Search>
<SSL:GROUPBOXBODY>
<TABLE>
<TR>
<TD>Text contained in controls</TD>
</TR>
</TABLE>
<SSL:GROUPBOXBODY>
</SSL:GROUPBOX>
In other words i want the control to contain any kind of HMTL ... more >>
Problem: <%= %> is not evaluated..
Posted by ruskie at 10/13/2004 2:32:59 PM
I created a user control with two public properties and drop it to an aspx
page as the following
<uc1:myUserControl
id="myUserControl1"
runat="server"
MyProperty1="<%= this.MyVar1 %>"
MyProperty2="<%= this.MyVar2 %>" >
</uc1:myUserControl>
Why the "<%= this.MyVar1 %>" and "<%= this.M... more >>
Books
Posted by Griff at 10/13/2004 1:39:07 PM
I'm after suggestions for the best books around for creating, using and
displaying controls in ASP.NET (by "displaying", I guess I'm talking about
CSS). I'd like a book that uses VB.NET for its examples and ideally uses
Visual Studio 2003.
(Probably a common thread in the newsgroups, but thin... more >>
Newbie "how to" questions
Posted by Griff at 10/13/2004 11:46:28 AM
I'm a complete novice to ASP.NET and have two questions - the first is
conceptual and the other is technical.
Conceptual:
I envisage having a web site that has a search facility displayed in the top
corner of every page. Seems sensible to me to have this as a control? So,
no matter what is ... more >>
I need to build user controls dinamically, is possible?
Posted by leon at 10/13/2004 9:10:05 AM
Hello everybody.
I need to build user controls dinamically into aspx page.
Besides of this, i need to put into each userscontrol different controls,
add to every control its control validators and its events.
If someone has some idea, i will say Thanks a lot.
leon
... more >>
<input type="image"... based custom control
Posted by Alfred Tascon at 10/12/2004 9:08:33 PM
I have created one of these controls but arent getting any call backs.
I've got the source from the MSPress book "Developing Microsoft ASP.NET
Server Controls and Components" for SimpleButton.cs (off Chapter 9) and
modified the "type" attribute to "image" plus added "src" attrinbute.
After c... more >>
composite control and postback data change handling
Posted by Donal McWeeney at 10/12/2004 2:12:45 PM
Hi,
I have a composite control that gets created dynamically and contains an
array of checkbox controls and an array of drop down list controls.
All the control postback and rendering works fine - however there is
something that I want to do that I cant figure out how to do.
In my OnLoa... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Dynamically added usercontrol raised events
Posted by ujjc001 NO[at]SPAM charter.net at 10/12/2004 12:34:44 PM
I've tried and tried and this problem eludes me.
I have a form called "main" which has a div tag "DeptInfo" in which I
add my control "Information", here's the code.
---
Dim cont As New Control
cont = LoadControl("Information.ascx")
cont.ID = "Information"
DeptInfo.Controls.Add(cont)
---... more >>
Could not load type 'UserWebControl.DatePicker'.
Posted by sbussing NO[at]SPAM xs4all.nl at 10/8/2004 11:58:05 AM
Hi all,
when trying to build a custom webcontrol I receive the above message.
It's caused by the inherits attribute of de the control-directive. I
have no clou of what could be going wrong. Any help is appreciated:
Code of the control:
<%@ Control Language="vb" AutoEventWireup="false"
Co... more >>
|