> Hi. all
> I have a customize web control. I have three simple properties and
[quoted text clipped - 20 lines]
> Thanks a lot
> Victor
Hi Victor,
Based on your description, what you want is display a custom control in a
DataList control's template(in each row after databind), correct?
For the "MyControl" you mentioned, is it a custom webserver control or web
usercontrol(ascx)? As you said that after you perform databindin on the
DataList, the images are not displayed as expected, do you mean your custom
webcontrol(MyControl) will display an Image if working correctly? Also, I
saw you bind the DataList to a List<> of MyControl type, is this just a
test datasource? Generally, you should bind DataList or other template
databound control to a DataSource object (such as DataReader, DataSet or
other custom data object Array/List). If convenient, you can also provide
the complete code snippet (or simplified one of your custom control) so
that we can get a clear view on it.
If there is anything I missed, please feel free to post here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
Victor - 04 Jul 2007 22:37 GMT
Hi Steve:
Sorry about my poor description. I post simplified version of code here.
I have a customized control MyControl like
public class MyControl : WebControl
{
private int nMyControlID;
private string strImagePath;
public int MyControlID
{
get
{
return nMyControlID;
}
set
{
nMyControlID = value;
}
}
public string ImagePath
{
get
{
return strImagePath;
}
set
{
strImagePath = value;
}
}
protected override void Render(HtmlTextWriter writer)
{
writer.RenderBeginTag(HtmlTextWriterTag.A);
writer.RenderBeginTag(HtmlTextWriterTag.Div);
writer.AddAttribute("src", ResolveUrl(ImagePath);
writer.RenderBeginTag(HtmlTextWriterTag.Img);
writer.RenderEndTag(); //img
writer.RenderEndTag(); //div
writer.RenderEndTag(); //a
}
}
And In my code I have
List<MyControl> lstResult = new List<MyControl>();
Database db = DatabaseFactory.CreateDatabase("MyDB");
string sqlCommand = "dbo.usp_GetAllImageList";
DbCommand dbCommand = db.GetStoredProcCommand(sqlCommand);
using (DataSet ds = db.ExecuteDataSet(dbCommand))
{
foreach (DataRow dr in ds.Tables[0].Rows)
{
DataRowRecord drMyControl = new DataRowRecord(dr);
MyControl obj = new MyControl();
obj.MyControlID = DataUtil.GetIntValue(drMyControl,
"MyControlID");
obj.ImagePath = DataUtil.GetStringValue(drMyControl, "ImagePath");
lstResult.Add(obj);
}
}
then I databind my list with the datalist like
datalist.datasource = lstResult;
datalist.databind():
the problem I have now is the datalist do create four customized controls.
but images do not display at all. I think the value is not bound to the
control.How can I solve this problem. Do I need to create another customized
databound list control for mycontrol?
Thanks a lot
Regards
Victor
> Hi Victor,
>
[quoted text clipped - 23 lines]
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
Steven Cheng[MSFT] - 05 Jul 2007 04:36 GMT
Thanks for your reply Victor,
Well, I've performed some local test through the custom control you
provided. It seems I can correctly make the "MyControl" display image
(through databinding) well in DataList. I think there might be something
incorrect with your aspx template of the DataList, would you also provide
it so that we can have a check? Anyway, below is my test page's aspx
template and code behind for your reference:
===========aspx================
<asp:DataList ID="DataList1" runat="server">
<ItemTemplate>
MYControl:
<cc1:MyControl ID="MyControl1" runat="server"
ImagePath='<%# Eval("ImagePath") %>' />
</ItemTemplate>
</asp:DataList>
========code behind============
protected void Page_Load(object sender, EventArgs e)
{
BindList();
}
protected void BindList()
{
MyControl[] mcs = new MyControl[5];
for (int i = 0; i < mcs.Length; i++)
{
mcs[i] = new MyControl();
mcs[i].ID = "mc_" + i;
mcs[i].MyControlID = i;
mcs[i].ImagePath =
"http://static.asp.net/asp.net/images/MicrosoftASPNET.gif";
}
DataList1.DataSource = mcs;
DataList1.DataBind();
}
=============================
the "MyControl"'s code is identical to yours. If you have any questions on
this, please feel free to post here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
Victor - 05 Jul 2007 22:59 GMT
Hi Steven:
thanks so much for your help. The problem is solved. The problem is I did
not bind the properties properly..
:) Thanks again for the help
> Thanks for your reply Victor,
>
[quoted text clipped - 52 lines]
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
Steven Cheng[MSFT] - 06 Jul 2007 02:33 GMT
You're welcome :-)
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.