Page 1 of 1

MetaTags once again

Posted: Wed Nov 30, 2011 6:08 pm
by dikan
Ok. I can save MetaTags into my reports. That is no problem. But how on earth I can change value for saved MetaTag or even delete MetaTag that already saved in report.
I found that if I try to save same MetaTag I have two MetaTags with same description in report file.

Example:


Owner,Djordje_x0020_Radovanovic
Owner,Djordje_x0020_Radovanovic_x0020_Bugica



Any clue?

Best regards,

Djordje

MetaTags once again

Posted: Thu Dec 01, 2011 3:38 am
by HighAley
Hello.
dikan wrote:Ok. I can save MetaTags into my reports. That is no problem. But how on earth I can change value for saved MetaTag or even delete MetaTag that already saved in report.
I found that if I try to save same MetaTag I have two MetaTags with same description in report file.
Please, try to use next code:

Code: Select all

rep.MetaTags.Add(new StiMetaTag("Name1", "Value1"));         //add MetaTag
rep.MetaTags["Name1"] = new StiMetaTag("Name1", "Value2");   //change MetaTag
rep.MetaTags.Remove(rep.MetaTags["Name1"]);                  //remove MetaTag
Thank you.

MetaTags once again

Posted: Thu Dec 01, 2011 6:21 pm
by dikan
Thanks. Unfortunately I did not find that in documentation.

Best regards,

Djordje Radovanovic

MetaTags once again

Posted: Fri Dec 02, 2011 8:45 am
by HighAley
Hello.
dikan wrote:Thanks. Unfortunately I did not find that in documentation.
We update our documentation constantly. Sorry, that this information wasn't in our documentation.
As I understand now all works right?

Thank you.

MetaTags once again

Posted: Sun Dec 04, 2011 8:19 pm
by dikan
Sure it works.

Your support is excellent.

Best regards,

Djordje

MetaTags once again

Posted: Tue Dec 06, 2011 1:44 am
by Andrew
Hello,

We are happy to help you.

Thank you.