all groups > asp.net building controls > november 2005 > threads for november 22 - 28, 2005
Filter by week: 1 2 3 4 5
ViewState and posted back data
Posted by Tumurbaatar S. at 11/28/2005 12:00:00 AM
I'm adding a template column to a DataGrid dynamically:
private void CreateColumn()
{
TemplateColumn col = new TemplateColumn();
...//set some col properties
col.EditItemTemplate = new MyTemplate();
MyGrid.Columns.Add(col);
}
The MyTemplate class implementes InstantiateIn... more >>
Load Image Dynamically
Posted by Mr.Cyber at 11/27/2005 10:56:01 AM
Hi, brothers :)
I'm rather novice in this area. I mean web programming and control building
and though.
I create UserControl:
public class ucParsedPNG : System.Web.UI.UserControl
{
... blah-blah-blah ...
}
My UserControl has to contain image and this one should be loaded
dynamic... more >>
Custom Templated Databound Control or derived control?
Posted by MattC at 11/23/2005 12:00:00 AM
Hi,
I want to create a control that performs much like a datalist but I want
more control over how the <ItemTemplate> contents is set out on the page.
For example I have a 4 by N grid of images to set out on the page, how the
first row is slightly different in taht the first image is twice ... more >>
Dynamically adding a custom control
Posted by Terry Holland at 11/23/2005 12:00:00 AM
Steven
Im getting in a bit of a mess with this. What I want to end up with is a
set of controls for editing / displaying fields on a webform. I would like
to be able to dynamically add these controls to webforms as and when I need
them.
Initially I need three types of fields
ctlFieldRe... more >>
Dynamically Loading User Control in PlaceHolder
Posted by Ugur Ekinci at 11/22/2005 12:00:00 AM
Hi ,
I load dynamically a user control in PlaceHolder with the number of fileds
in db.
When loading user control there is no problem, if returning field number is
2 then 2 usr controls load in plcholder.
But problem is that , after page postback plcholder says that I have no
control,
... more >>
Missing code example
Posted by gizm0 at 11/22/2005 12:00:00 AM
Hi!
Am I blind or there is no code example for this article?:
http://msdn2.microsoft.com/en-us/library/d0etxzd8.aspx
It's very important to me to have these sources
Thanks,
Radek
... more >>
|