質問する
171 次
2 に答える
0
私が理解しているように、ここで見つけることができる ASP.NET 用の BBCode コンバーターが必要です。
与えられたリンクからの例:
string BBCodeSyntax = "[url={webaddress}]{display}[/url]";
string HtmlSyntax = "<a href=\"{webaddress}\">{display}</a>";
string Fields = "{webaddress};{display}";
string input = "For those who code - [url=http://www.codeproject.com]The CodeProject[/url]. This website contains lots of articles about programming. For open source project hosting from Microsoft, you may have a look at [url=http://www.codeplex.com]Codeplex.com[/url].";
string output = BBCode.ConvertToHtml(input, BBCodeSyntax, HtmlSyntax, Fields);
return output;
于 2013-05-13T08:52:02.333 に答える