Hmm. If you are working with a relatively small string you could do something like:
string SomeString = "Client Name:$$C-Name$$ Date:$$C_date$$ Remark:good";
string[] VariableArray = SomeString.Split("$$");
foreach(string s in VariableArray)
{
Response.Write(s);
}
If you are working with a large string you may net a bit of performance by creating a RegEx.
hth.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========