[Tex/LaTex] How to use a link as footnote that has special characters inside

footnotes

I want to use the following footnote:

\footnote{http://msdn.microsoft.com/en-us/library/ee804826%28Surface.10%29.aspx}

But the problem is since there are % symbols in the link, it is recognized as a comment. How can I avoid that?

Best Answer

Isn't it enough to simple escape the % with \ or am I missing something here? That is:

\footnote{http://msdn.microsoft.com/en-us/library/ee804826\%28Surface.10\%29.aspx}
Related Question