0

The incoming URL in this application has some URL parms but when I put a breakpoint on the base page, all I see is the internally UIP mapped URL which loses the parm information.

So, for UIP based applications what is the method to retrieve the original URL?

I tried Request.Url.AbsoluteUri but it just gives the ../index.aspx url instead of the non-templated url which is incoming.

4

1 回答 1

0

请尝试使用属性Request.Url.OriginalString;

该属性获取传递给 Uri 构造函数的原始 URI 字符串。

于 2012-07-17T23:47:55.247 回答