BNR exchange rates

Please select your desired exchange currency to see its chart and then modify the period range as desired. The default range is from 3 January 2006 until now.

For help you can go visit article »


Curs valutar BNR

Selectati valuta dorita pentru a vedea graficul ei si apoi modificati durata dupa dorinta. Perioada initiala este de la 3 ianuarie 2006 pina acum.

Pentru ajutor puteti vizita articol »

Posts tagged Tips

svn: Your file or directory is probably out-of-date

0

How to solve SVN issue: "The version resource does not correspond to the resource within the transaction." One of the most tedious bugs in Subversion, ever, is this one. If you want to commit changes to your working copy, and the response of svn is :

 

svn: The version resource does not correspond to the resource within the transaction. Either the requested version resource is out of date (needs to be updated), or the requested version resource is newer than the transaction root (restart the commit).

If you stick with standard advice, trying to update your working copy you’ll find out something interesting: Nothing is out of date! You just can’t commit!!!

One solution that I found, but I don’t know all the consequences of doing this so DON’T BLAME ME if you lose important local properties in your repository is the following :
1) Go to the directory in your working copy that contains the problem file.
2) Delete .svn/all-wcprops from there.

That’s it. Commit and be happy. PS: All I can say is that this has not crashed any of my working copies yet.

ASP .Net Page.Header with custom meta tags

1

One of this days a friend of mine shared with me some SEO techniques and one of them was to change the meta tags associated with a product page. So after a little research I found out a way to accomplish this : modify the Header property of ASP .Net page and add several HtmlMeta tags who can hold the data needed to be changed.

Each ASP .Net page has a property called Header who is the “hidden” header code of each HTML page. It is available starting with .Net version 2.0 and exposes also the meta tags object collection. Actually, all elements in the header are available in Header.Controls

// Render:  HtmlMeta meta1 = new HtmlMeta(); meta1.Name = "keywords"; meta1.Content = "pharmacy, online pharmacy, home delivery";   // Render:  HtmlMeta meta2 = new HtmlMeta();meta.Name = "verify-v1";meta.Content = "DmMArCJQq9KV45wvKMwrWASh3R8UWTd7NfBD"; 

// Render:  HtmlMeta meta3 = new HtmlMeta();meta.Name = "revisit-after";meta.Content = "2 days";

Header.Controls.Add(meta1);Header.Controls.Add(meta2);Header.Controls.Add(meta3);
Go to Top