Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7975423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:38:01+00:00 2026-06-04T08:38:01+00:00

I am working on .Net TBB in SDL Tridion 2011 SP1. My component Source

  • 0

I am working on .Net TBB in SDL Tridion 2011 SP1.

My component Source looks like this.

<Content>
  <single>ABCD</single>
</Content>

I tried some thing like this.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Tridion.ContentManager.Templating.Assembly;
using Tridion.ContentManager.Templating;
using Tridion.ContentManager.ContentManagement;
using Tridion.ContentManager.ContentManagement.Fields;
using System.IO;
using System.Collections;
using System.Xml;
using System.Xml.Linq;

namespace ClassLibrary1
{
    public class SampleTemplate : ITemplate
    {

        /// <summary>
        /// Transform as defined by ITemplate.
        /// </summary>
        /// <param name="engine">Templating engine</param>
        /// <param name="package">Package to process</param>
        public void Transform(Engine engine, Package package)
        {
            using (MemoryStream mem= new MemoryStream() )
            {
                Component component = engine.GetObject(package.GetValue("Component.ID")) as Component;
                ItemFields content = new ItemFields(component.Content, component.Schema);


                XhtmlField temp = (XhtmlField)content["single"];

                int i=0;
                XmlDocument xdoc = new XmlDocument();

                XmlElement root = xdoc.CreateElement("body");

                XElement xe = null;

                foreach (string val in temp.Values)
                {
                    string j=i.ToString();

                    XmlNode xnode = xdoc.CreateNode(XmlNodeType.Element, @"tcdl:ComponentField", "tcdlNamespace");
                    XmlAttribute name = xdoc.CreateAttribute("name");
                    XmlAttribute index = xdoc.CreateAttribute("index");
                    name.Value="single"+"["+i+"]";
                    index.Value = "0";
                    xnode.Attributes.Append(name);
                    xnode.Attributes.Append(index);
                    root.AppendChild(xnode);
                    i++;
                }
                package.PushItem("Output", package.CreateHtmlItem(xdoc.InnerText));
            }

        }
    }
}

Here “single” is Multivalued field.

I am getting blank output.

Can any one help how it can be done.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:38:02+00:00Added an answer on June 4, 2026 at 8:38 am

    Instead of:

    package.PushItem("Output", package.CreateHtmlItem(xdoc.InnerText));
    

    use

    package.PushItem("Output", package.CreateHtmlItem(root.OuterXml));
    

    Also, I noticed that you are not using field value anywhere. You are iterating over it, but value is not added into the output, not sure if that’s what you want

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on creating .NET TBB for Tridion 2011 SP1. I have two
I'm working with .NET (C#) and the speech recognition engine. I'd like to be
Previous working asp.net webforms app now throws this error: System.MissingMethodException: Method not found The
I am working with .NET and I want to do some string manipulations like
Suppose this simple scenario: My client has an already working .net application and he/she
We've been working with .Net v3.5 SP1 and MVC 2. Backend SQL Server 2005.
I have a working .Net WCF HTTP service. If I put the URL into
I'm working with .NET strongly-typed datasets and have a table with a nullable int
I'm working with .NET (specifically Boo, but answers would work in C# too) and
Just started working with .NET and MVC(1). I'm having a problem wherein in my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.