Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / July 2007

Tip: Looking for answers? Try searching our database.

Customized Control in the Datalist doesnt render

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Victor - 04 Jul 2007 06:25 GMT
Hi. all
I have a customize web control. I have three simple properties and
customized render class. then I add this control into my datalist like
<asp:DataList ID="datalist" runat="server" RepeatColumns="3">
<ItemTemplate>
<uc:mycontrol id="test" runat="server" />
</ItemTemplate>
</asp:DataList>
In the code-behind I have something like
List<mycontrol > lst = new List<mycontrol >;
lst.add(new mycontrol ());
lst.add(new mycontrol ());
lst.add(new mycontrol ());
datalist.datasource= lst;
datalist.databound();

But i found the control can not be rendered properly. Instead of displaying
four images, no images has been shown. What did I do wrong here? Can someone
give me some reference on how to add your customized control to datalist
then bind the value and render it properly.

Cheers
Thanks a lot
Victor
Masudur - 04 Jul 2007 07:39 GMT
> 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 ...

not getting the actual picture what is going on... any way...
http://msdn2.microsoft.com/en-us/library/ms366538.aspx
http://msdn2.microsoft.com/en-us/library/ms366539.aspx
here is two link which demonstrated how to build a custom databound
control...

Thanks
Munna
www.kaz.com.bd
http://munnacs.110mb.com
Steven Cheng[MSFT] - 04 Jul 2007 10:09 GMT
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.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.