07-28-04 11:10 PM
Can the placeholder control binds placeholder at run time?
I want to bind different placeholder according to the
language the user choose.
switch(CheckChannelName)
{
case "english":
HtmlPlaceholderChannelBased.ID = "HtmlPlaceholderEnglish";
HtmlPlaceholderChannelBased.PlaceholderToBind
= "EnglishPlchldr";
break;
case "japanese":
HtmlPlaceholderChannelBased.ID = "HtmlPlaceholderJapanese";
HtmlPlaceholderChannelBased.PlaceholderToBind
= "JapanesePlchldr";
break;
}
I had such placeholder definitions in the template
already. But simply it's doesn't work..What's wrong with
it?
[ Post a follow-up to this message ]
|