tag:blogger.com,1999:blog-3930375442497799514.post-43501401145665789852008-06-04T15:16:00.000-07:002008-06-04T15:20:42.167-07:002008-06-04T15:20:42.167-07:00Response.Redirect ResolveUrl failsI had a Response.Redirect fail today. The url was something like this: "~/blah/blah.aspx?id=5&time=3:30". Response.Redirect, when it sees the "~" character, does a ResolveUrl() call under the hood. That's really what was failing. It wouldn't resolve my url, so I kept removing parameters until it worked. It was choking on the ":" character. The solution was to do a myUrl.Replace(":","%3A"). I don't know why it can't handle the ":" and wonder if there are other characters it has a problem with.Tom Puleohttp://www.blogger.com/profile/10697521511530638404noreply@blogger.com0