All Tags > querystring (RSS)
  • Re: What am I doing wrong?

    I think you could modify the rule to make it work: <rule name="Redirect to New Pages 2" stopProcessing="true"> <match url="articles.aspx$" /> <conditions> <add input="{QUERY_STRING}" pattern="(?:^|&)articleID=([0-9]+)(?:$|&)"...
    Posted to Forum by ruslany on 11-12-2008, 12:53 PM
  • Re: Page without querystring returns wrong page

    [quote user="DTVUW"]I did this last night after reading one of your other threads, and it solved the problem. I was doing Failed Request Tracking logs and saw that the index.php was being url write cached the wrong page. does the url rewrite caching save a lot of memory/cpu/processing time...
    Posted to Forum by speednet on 11-04-2008, 6:34 PM
  • Re: Handling Querystring Parameters

    It may be. What does Request.ServerVariables["QUERY_STRING"] contain?
    Posted to Forum by ruslany on 10-24-2008, 2:21 PM
  • Re: Handling Querystring Parameters

    You should not have to use this workaround. It is perfectly valid to mix static querystring parameters with parameters from virtual URL when constructing query string for rewritten URL. When appendQueryString is set to ON, then URL rewriter takes the querystring from the virtual URL and appends it to...
    Posted to Forum by ruslany on 10-24-2008, 1:01 PM
  • Handling Querystring Parameters

    Hi all, I have come across a "problem" with the Url Rewriter, when trying to apply it to a not-very-nice set of legacy .NET pages. I have fixed it using some code in my web application, but I'm not sure whether I should be doing what I'm trying to do. Here's the issue. Physical...
    Posted to Forum by Englander on 10-24-2008, 5:20 AM
  • Re: Pulling Backreferences from Multiple Conditions

    Within a rule action, you can use the back-references to the the last matched condition of that rule. Also within a condition input string, you can use the back-references to the previously matched condition. With that in mind, a possible way to do what you are trying to do is to use the back-reference...
    Posted to Forum by ruslany on 10-13-2008, 5:42 PM
  • Re: Detect question mark symbol

    Can you explain what your rewrite rule is supposed to do?
    Posted to Forum by ruslany on 10-13-2008, 1:31 PM
  • Re: Url rewrite drops querystring before matching the pattern

    This article describes how URL parts can be accessed from the rewrite rule. The rule pattern only looks into the URL path, to evaluate the query string part you can use condition with {QUERY_STRING} server variable: <rule name="redirect"> <match url="^ProductInformation\.asp$"...
    Posted to Forum by ruslany on 10-10-2008, 2:03 PM
  • Re: Detect question mark symbol

    This article explains how the URL parts can be accessed from rewrite rule. If URL contains "?" then whatever is before the "?" will be used as a URL path and will be given as an input for the rule pattern. This means that the rule pattern specified in the <match> element of...
    Posted to Forum by ruslany on 10-10-2008, 1:35 PM
  • Appending QueryString

    I have the following rewrite rule defined: <rule name="AllProductsByManufacturer" patternSyntax="Wildcard"> <match url="Category/*/*/Products.aspx" /> <conditions> </conditions> <action type="Rewrite" url="AllProductsByManufacturer...
    Posted to Forum by ketch on 09-19-2008, 12:26 PM
Page 2 of 3 (22 items) < Previous 1 2 3 Next >
Microsoft Communities