Filter DataView by QueryString

HI, 
I have created an external content type and an external list over it.
Then I've edited the view page of the list, adding a new DataView for the list and I put a Filter & Parameter on it.
The Filter is based on a querystring value.
When I go to the edited page and add ?paramName=ParamValue to the url nothing happens!
What kind of check could I do to understand the problem?

Hi Elena,
My best advice would be to do as much filtering as possible which you are setting up the external content type and pull only the external list data that you need.
Thanks
Daniel Christian (MCTS)

Similar Messages

  • How to pass query string from content editor webpart to another?

    Hi All,
    I am using content editor web-part to show GooglePiechart  for workflow status column in a list. When user click on chart, i need to show particular clicked area data in another list web-part. So that, i need to pass the query value from content editor
    web-part to another web-part. How to achieve this scenario?

    Hi Sam,
    What you can do is using SPD create a data view webpart which excepts query string value as filters as shown in the below article
    http://madanbhintade.wordpress.com/2012/01/08/sharepoint2010dataviewwebpart/
    http://sharepoint.stackexchange.com/questions/55184/how-to-filter-dataview-webpart-dvwp-from-query-string
    Then When you click on the pie charts particualr section perform a post back  by appending the required query string paramter to the same page on which your webpart exist
    Raghavendra Shanbhag | Blog: www.SharePointColumn.com
    Please click "Propose As Answer " if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.

  • Find email with DataView filter

    Why is this so hard?
    in SQL I simply state, Email = @Email, and everything works fine when I send it a value such as [email protected]
    So why can't I get something to work with the statement?
    New DataView(Contacts, "Email = " & strEmail,"", DataViewRowState.CurrentRows) returns errors with the . and the @ and all this other stuff.  Is there any sane reason why I can't get a verbatim search?
    Please help, I'm going crazy over this.
    jvj

    You need to delete the trial & then reinstall from the boxed DVD or the Mac App Store. The files to delete are the iWork ’09 folder from the main HD > Applications; the iWork ’09 folder in HD > Library > Application Support & the individual iWork application plist files found in HD > Users > (your account) > Library > Preferences for each user. Yvan Koenig has written an AppleScript that removes the files. You can find it on his box.com account in for_iWork'09 > other_iWork'09 items > uninstall iWork '09.zip.

  • How to set value for Dropdown control using Querystring filter wepart

    Hi,
    I have a dropdown in my customized list form and need to set the value for the dropdown control using query string filter web part.
    I am able to set value for textbox control using Query String Filer web part.
    But, since the dropdown values are not populated on form load, the value is not set for dropdown control.
    How to load the values in dropdown control on form load and set a value using Query String filter webpart?
    Thanks,
    dhijit

    Hi,
    According to your post, my understanding is that you want to filter choice field using Query String Filter web part.
    To filter using query string filter web part, we can set the default value for the choice field in the query string filter web part panel as below, then connect to the list.
    Now it would be filter by the value you have set.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • SharePoint 2013 List View with query string filter stops working after editing view from browser

    I have created one list definition in which I have added one list view which will filter data from query string paramater
    So when I am creating list from my list definition, view with query string filter is working fine.
    But when I am modifying view from UI(I am not changing any thing , just opening "Modify View" page and then click on "Save" button), view gets stop working means it's not filtering data based on query string
    Any suggestion what I am missing?
    Below is my list view schema
    <View BaseViewID="11" Type="HTML" TabularView="FALSE" WebPartZoneID="Main" DisplayName="$Resources:OIPLBScoreCard,viewFilterTasksByTarget;" MobileView="True" MobileDefaultView="False" Url="FilteredTasks.aspx" SetupPath="pages\viewpage.aspx" DefaultView="FALSE" ImageUrl="/_layouts/15/images/issuelst.png?rev=23">
    <Toolbar Type="Standard" />
    <ParameterBindings>
    <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
    <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)" />
    <ParameterBinding Name="TargetId" Location="QueryString(TargetId)" />
    </ParameterBindings>
    <JSLink>hierarchytaskslist.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <JSLink>clienttemplates.js</JSLink>
    <RowLimit Paged="TRUE">100</RowLimit>
    <ViewFields>
    <FieldRef Name="Body"></FieldRef>
    <FieldRef Name="Title"></FieldRef>
    <FieldRef Name="StartDate"></FieldRef>
    <FieldRef Name="DueDate"></FieldRef>
    </ViewFields>
    <ViewData>
    <FieldRef Name="PercentComplete" Type="StrikeThroughPercentComplete"></FieldRef>
    <FieldRef Name="DueDate" Type="TimelineDueDate"></FieldRef>
    </ViewData>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="oipscTargetLookup" LookupId="TRUE"/>
    <Value Type="Lookup">{TargetId}</Value>
    </Eq>
    </Where>
    </Query>
    </View>
    I have one lookup field from "Target List" in my source list and I want to filter data based on that lookup field.

    Hi JayJT,
    The Miscellaneous is located in the contact list that you used for the connection.
    So , you need to edit the page, then edit the contact list that you used, in the web part properties of the contact list, you will find Miscellaneous, then expand it and select ‘Server Render’ .
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Can we have a filter to handle all the apps in a container?

    Hi,
    I have a simple (Stupid) question.
    Can I configure a Servlet filter to intercept requests to all the applications (a.k.a all the ServletContexts)? All I know is we can configure a filter for each ServletContext (application), but I am wondering if there is any way.
    The reason I am asking is because, if there is a way to do so, I can configure my filter to provide me the debug output (Such as CGI, session, request, and ServletContext variables) on all the applications on development servers and when I can get rid of debugging on production servers (by not deploying the filter).
    Thanx in advance,
    Thirupati Panyala

    Thanks for the reply Sudhir.
    I tried it in Tomcat 4.x. It works for only the root resources even though I configured the filter for /* which is expected to include all the resources including root (for ex: /examples/...).
    So, I understand, the web.xml under /conf will be overriden by that of the respective apps as you go further down the context paths (apps). That's why the container was not executing my filter when I went to the next level of the URI (http://localhost:8080/index.html WORKED, but NOT http://localhost:8080/examples/jsp/num/numguess.jsp).
    If you want to try it for yourself, here is the piece of code I tried with (This is taken from Apache Tomcat source):
    package filters;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.sql.Timestamp;
    import java.util.Enumeration;
    import java.util.Locale;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.Cookie;
    import javax.servlet.http.HttpServletRequest;
    * Example filter that dumps interesting state information about a request
    * to the associated servlet context log file, before allowing the servlet
    * to process the request in the usual way. This can be installed as needed
    * to assist in debugging problems.
    * @author Craig McClanahan
    * @version $Revision: 1.5 $ $Date: 2001/05/23 22:26:17 $
    public final class RequestDumperFilter implements Filter {
    // ----------------------------------------------------- Instance Variables
    * The filter configuration object we are associated with. If this value
    * is null, this filter instance is not currently configured.
    private FilterConfig filterConfig = null;
    // --------------------------------------------------------- Public Methods
    * Take this filter out of service.
    public void destroy() {
    this.filterConfig = null;
    * Time the processing that is performed by all subsequent filters in the
    * current filter stack, including the ultimately invoked servlet.
    * @param request The servlet request we are processing
    * @param result The servlet response we are creating
    * @param chain The filter chain we are processing
    * @exception IOException if an input/output error occurs
    * @exception ServletException if a servlet error occurs
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain)
         throws IOException, ServletException {
    if (filterConfig == null)
         return;
         // Render the generic servlet request properties
         StringWriter sw = new StringWriter();
         PrintWriter writer = new PrintWriter(sw);
         writer.println("Request Received at " +
              (new Timestamp(System.currentTimeMillis())));
         writer.println(" characterEncoding=" + request.getCharacterEncoding());
         writer.println(" contentLength=" + request.getContentLength());
         writer.println(" contentType=" + request.getContentType());
         writer.println(" locale=" + request.getLocale());
         writer.print(" locales=");
         Enumeration locales = request.getLocales();
         boolean first = true;
         while (locales.hasMoreElements()) {
         Locale locale = (Locale) locales.nextElement();
         if (first)
         first = false;
         else
         writer.print(", ");
         writer.print(locale.toString());
         writer.println();
         Enumeration names = request.getParameterNames();
         while (names.hasMoreElements()) {
         String name = (String) names.nextElement();
         writer.print(" parameter=" + name + "=");
         String values[] = request.getParameterValues(name);
         for (int i = 0; i < values.length; i++) {
         if (i > 0)
              writer.print(", ");
              writer.print(values);
         writer.println();
         writer.println(" protocol=" + request.getProtocol());
         writer.println(" remoteAddr=" + request.getRemoteAddr());
         writer.println(" remoteHost=" + request.getRemoteHost());
         writer.println(" scheme=" + request.getScheme());
         writer.println(" serverName=" + request.getServerName());
         writer.println(" serverPort=" + request.getServerPort());
         writer.println(" isSecure=" + request.isSecure());
         // Render the HTTP servlet request properties
         if (request instanceof HttpServletRequest) {
         writer.println("---------------------------------------------");
         HttpServletRequest hrequest = (HttpServletRequest) request;
         writer.println(" contextPath=" + hrequest.getContextPath());
         Cookie cookies[] = hrequest.getCookies();
    if (cookies == null)
    cookies = new Cookie[0];
         for (int i = 0; i < cookies.length; i++) {
         writer.println(" cookie=" + cookies[i].getName() +
                   "=" + cookies[i].getValue());
         names = hrequest.getHeaderNames();
         while (names.hasMoreElements()) {
         String name = (String) names.nextElement();
              String value = hrequest.getHeader(name);
         writer.println(" header=" + name + "=" + value);
         writer.println(" method=" + hrequest.getMethod());
         writer.println(" pathInfo=" + hrequest.getPathInfo());
         writer.println(" queryString=" + hrequest.getQueryString());
         writer.println(" remoteUser=" + hrequest.getRemoteUser());
         writer.println("requestedSessionId=" +
                   hrequest.getRequestedSessionId());
         writer.println(" requestURI=" + hrequest.getRequestURI());
         writer.println(" servletPath=" + hrequest.getServletPath());
         writer.println("=============================================");
         // Log the resulting string
         writer.flush();
         response.getWriter().print(sw.getBuffer().toString());
         // Pass control on to the next filter
    chain.doFilter(request, response);
    * Place this filter into service.
    * @param filterConfig The filter configuration object
    public void init(FilterConfig filterConfig) throws ServletException {
         this.filterConfig = filterConfig;
    * Return a String representation of this object.
    public String toString() {
         if (filterConfig == null)
         return ("RequestDumperFilter()");
         StringBuffer sb = new StringBuffer("RequestDumperFilter(");
         sb.append(filterConfig);
         sb.append(")");
         return (sb.toString());
    And the config in web.xml is :
    <filter>
    <filter-name>Request Dumper Filter</filter-name>
    <filter-class>filters.RequestDumperFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>Request Dumper Filter</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    Thanx
    Thirupati Panyala

  • Filter Criteria will not save in SharePoint Designer

    I have a web page that contains form webpart (for entering search keywords) and a dataview with successful configuration to sql database table.
    In SPD > dataview > Common Tasks:
    I have created parameter with control type and texbox control ID. Then setup the web part connection to link both web parts.
    In the final step I then try to set the filter criteria and choosing columns with available option of parameter name and click ok. The filter values disappear.
    I have followed the steps from the following link:
    http://andyparkes.co.uk/blog/index.php/2008/10/31/creating-a-multi-column-search-form-in-sharepoint-v3-with-sharepoint-designer/
    Why does the Filter criteria not save?
    Thanks in advance.
    -- techChirag

    Hey, I dont suppose anyone's found a solution to this yet? I've succesfully done this on a few different Site Collections, but for some reason it's not working on my latest one. As above, after setting the Filter Criteria and saving the page in SPD2010,
    the filter criteria just dissappears. Random!

  • Cannot get URL web part filter to pass Parameter to List web part

    How do I wire an out-of-the-box URL web part filter to a SharePoint 2013 list (or "app" as renamed in 2013) web part when the list has a parameter?
    My SharePoint list uses a parameter because it needs a Contains filter, as in
         <Where>
          <Contains>
           <FieldRef Name="MyFieldName"/>
           <Value Type="Note">{MyParam}</Value>
          </Contains>
         </Where>
    The ParameterBinding is defined simply.
    <ParameterBinding Name="CohortParam" DefaultValue=""/>
    It has had Location="None" in the past, but another forum entry that I read suggested removing that.
    When I add the list (or "app" in SharePoint 2013) to a web part page and also add a URL Filter web part, the URL filter cannot see the parameter. The menu chain Connection >> Send Filter Values To >> [My List web part name] shows
    the dialogue. On the "Choose Connection" tab, I choose "Get Parameter Values From". Clicking the "Configure" button results in the "Configure Connection" tab having the message "The Consumer Web Part did not
    provide schema information".

    Hi Randy,
    You need to change the "MyParam" to "CohortParam", for parameterbinding element we need to add the location attribute as below codeline, then when we use the QueryString "CohortParam" with value in url, it will directly
    filter the list web part items without adding URL Filter web part.
    <ParameterBinding Name="CohortParam" Location="QueryString(CohortParam)" DefaultValue=""/>
    I attached my resutls as below image (also "MyParam" can be changed to "CohortParam" if you want), you can take a look.
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Null query string in servlet filter with OC4J 10.1.3.1.0

    I have a strange problem with OC4J 10.1.3.1.0. In the servlet filter, while requesting the querystring with HttpServletRequest.getQueryString the result is null, even if it is verified with a sniffer that that query string is there. This happens only with certain requests. The query string is long but nothing very special otherwise.
    Any ideas what might be wrong?
    Thanks,
    Mika

    I got the same problem. I tried in others application servers alternatives and it works. By now i have to change links like this "http://localhost:8888/SIVIUQ/LoadIndex.portal?test=1" for forms using javaScript to send the parameters corresponding to the button pressed. To use buttons instead links is not the better solution due to usability. Any suggestion to solve this problem?
    Thanks
    Javier Murcia
    Yo tengo el mismo problema. He intentado con otros servidores de aplicaciones y funciona. Por ahora tengo que cambiar links como "http://localhost:8888/SIVIUQ/LoadIndex.portal?test=1" por formularios, usando javaScript para enviar los parametros correspondientes al boton presionado. Usar botones en vez de links no es la mejor solucion debido a usabilidad. ¿Alguna sugerencia para resolver este problema?
    Gracias
    Javier Murcia

  • Encoding UTF-8, Wrong data request for filter

    Hi all,
    I'm using the folowing filters in my App.
    I also use the charset UTF-8.
    In the QueryString Parameter $filter, 'RÜCK' becomes 'R�CK'.
    The Request URL looks like this: ....and%20IVstatex%20eq%20%27R%ef%bf%bdCK%27....
    When i start my app the filter RÜCK doesnt work, but there is no error message. I just getting wrong selected data. All other filters are working correct. Only German Ü, Ä, Ö dont work. How can I fix this problem?
    Thanks.

    Problem solved!!!
    I used the Hex unicode \u00DC for Ü.

  • Reporting - Pass value on url (Querystring)

    Has anyone out there had success passing values into Configmgr 2012 SSRS reports through "QueryString?" 
    I'd like to be able to email clients a report (either that I create or canned) that I can pass a variable in the http url and it presents that data.  That way the report can be dynamic - but allow us to email the exact data we want to the client.
    I have read several posts it is possible, but I have not been able to successfully do this with any of the existing SCCM reports.
    Any ideas or thoughts? 

    So I sort of stumbled upon a bit of the solution after doing a bit of research on the SSRS technet articles.  It appears that it matters how you access your reports. 
    There appears to be a different report engine if you go to ReportServer and ReportViewer.aspx instead of Reports and Report.aspx.  The ReportViewer.aspx must give you access to querystring and other command options you pass in including the rs:.
    SO - other folks with more SSRS experience may be able to explain with greater details the real reasons this works but if you need to do this - simply change your URL to the following:
    http://<ServerName>/ReportServer/Pages/ReportViewer.aspx?%2f<SSRS-Folder>%2f<ReportHTTPName>&rs:Command=Render&variable=<VariableValue>
    So a real example would be:  http://<ServerName>/ReportServer/Pages/ReportViewer.aspx?%2f<SSRS-Folder>%2fHardware+-+Memory%2fMemory+information+for+a+specific+computer&rs:Command=Render&variable=Computer1
    The two keys I saw are:
    rs:Command (this forces the report to run and execute and not just load up and ask you for a value)
    variable=xxx - this is the name of the parameter in the SSRS report.  So you need to edit the report and then determine the name of the actual variable.  Also - this appears to be case sensitive.
    If someone out there is a report expert and wants to clarify my statement - please feel free to do so.  Hopefully this helps out someone else who needs this!
    We have requests for data from clients who want a "live report" - but explaining the values in the fiels (or getting them not to type computer names incorrectly) is a pain - so this will help me significantly in day to day reporting for clients! 
    We also have a report for App Dev folks to see their distributions (pie-charts) - and I can now send them a dynamic report of their specific app w/out having to filter down and remember what I named their package or application.  Direct link to their
    data!
    Thanks again if anyone wants to add to my "solution here" and clarify the technicalities of SSRS and Querystring.

  • Dataview webpart

    Hi
    I am trying to use dataview webpart on SharePoint 2013, I am using SPD to create dataview web part and added couple of columns from my forms. I can see my newly create webpart page, I would like to total columns value using sum function but
    not getting result.Also, how do you apply filter on column
    I have used command <xsl:value-of select="sum(@TJun_x0020_14)"/>
    please help, also do not know exact placement in code
    tp

    Hi Tejal,
    According to your description, my understanding is that you want to use sum function in the dataview web part.
    You can add a new your XSL to emit the total like this:
    <xsl:template name="dvt_1.body">
    <xsl:param name="Rows"/>
    <xsl:for-each select="$Rows">
    <xsl:call-template name="dvt_1.rowview"/>
    </xsl:for-each>
    <tr>
    <td>
    TOTAL
    </td>
    <td>
    <xsl:value-of select="format-number(sum($Rows/@Potential_x0020_Value),'#,##0')"/>
    </td>
    </tr>
    </xsl:template>
    Here is a detailed article for your reference:
    Summing a Column in a Data View Web Part
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Filter List in DocumentSet Homepage

    Hi,
    we would like to Filter a specific list Webpart on the documentset Homepage by a property of the current documentset (Customer). Does anybody have a hint on how to accomplish this Task?
    thanks, Sebastian

    Hi,
    It would difficult to achieve this requirement with the OOTB features available cause we might need to retrieve the properties of the DocumentSet and filter the list
    view web part dynamically.
    A possible workaround would be like this: Add a <iframe> in the docsethomepage.aspx, specify the URL of the AllItems.aspx of the list for the “src”
    attribute of this <iframe> using JavaScript dynamically. In this URL, we can append query string to get a filtered list view back to <iframe>.
    About iframe:
    http://www.w3schools.com/tags/tag_iframe.asp
    To retrieve the property of the current DocumentSet, we can use JavaScript Client Object Model which provides rich APIs for us to access SharePoint objects:
    http://msdn.microsoft.com/en-us/library/office/hh185006(v=office.14).aspx
    More information about JavaScript Client Object Model:
    How to: Create, Update, and Delete List Items Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx
    Common Programming Tasks in the JavaScript Object Model
    http://msdn.microsoft.com/en-us/library/office/hh185015(v=office.14).aspx
    To filter the list view in the <iframe>, we can pass an URL with the query string:
    http://yalla.itgroove.net/2012/02/sharepoint-filter-list-library-by-querystring/
    Feel free to reply if there any questions about the solution above.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Filter a filtered recordset

    DW CS3 - Access - ASP VBScript
    I'm still learning SQL and trying to figure out how to filter down a recordset using parameters.   I want to filter one recordset twice in a specific order.  My first filter would pull records based on an item clicked from a form entitled "type".
              VIEW TYPE:  itemA  |  itemB  |  itemC
    My second filter would pull records within the first set of records from a form entitled "search" (textfield keyword search).   All data is retrieved on the same page using method GET.  I'm using parameters for both forms, similar to the following example (I know the operator is incorrect).  Maybe my approach is infeasible?  None of my books or tutorials help since I'm not sure what to look for in order to do this, so any help would be appreciated.
    SEACH Gender, Color, Type, Details
    FROM myTable
    WHERE Type LIKE %MMColParam% AND Details LIKE %MMColParam2%
    MMColParam
    Text
    Request.Querystring.("type")
    MMColParam2
    Text
    Request.Querystring("search")
    Message was edited by: christinett

    No other forms.
    I have a similar db and page I've used as my experiment for SOCKS.  It is doing the exact same thing.  Here's the code:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="../Connections/myconnection.asp" -->
    <%
    Dim rs_socks__MMColParam
    rs_socks__MMColParam = "M"
    If (Request.Querystring("gender")  <> "") Then
      rs_socks__MMColParam = Request.Querystring("gender")
    End If
    %>
    <%
    Dim rs_socks__MMColParam2
    rs_socks__MMColParam2 = "%"
    If (Request.Querystring("search")  <> "") Then
      rs_socks__MMColParam2 = Request.Querystring("search")
    End If
    %>
    <%
    Dim rs_socks
    Dim rs_socks_cmd
    Dim rs_socks_numRows
    Set rs_socks_cmd = Server.CreateObject ("ADODB.Command")
    rs_socks_cmd.ActiveConnection = MM_myconnection_STRING
    rs_socks_cmd.CommandText = "SELECT * FROM tbl_apparel WHERE gender = ? AND details LIKE ?"
    rs_socks_cmd.Prepared = true
    rs_socks_cmd.Parameters.Append rs_socks_cmd.CreateParameter("param1", 200, 1, 255, rs_socks__MMColParam) ' adVarChar
    rs_socks_cmd.Parameters.Append rs_socks_cmd.CreateParameter("param2", 200, 1, 255, "%" + rs_socks__MMColParam2 + "%") ' adVarChar
    Set rs_socks = rs_socks_cmd.Execute
    rs_socks_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    rs_socks_numRows = rs_socks_numRows + Repeat1__numRows
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <div align="center">
      <p>SOCKS</p>
        show socks for this gender: <a href="../FilterTests/FILTER_TEST6.asp?gender=M">male</a> |<a href="../FilterTests/FILTER_TEST6.asp?gender=F"> female</a> | <a href="../FilterTests/FILTER_TEST6.asp?gender=anyone">anyone</a>
      <form id="search" name="search" method="get" action="../FilterTests/FILTER_TEST6.asp?gender="<%=Request.QueryString("gender") %>">
        <p>search in above category for:
          <input name="search" type="text" id="search" value="<%= Request.QueryString("search") %>" />
            <input type="submit" value="search" />
          <a href="../FilterTests/FILTER_TEST6.asp">reset all</a></p>
      </form>
      <table cellpadding="5">
        <tr>
          <th scope="col">TYPE</th>
          <th scope="col">GENDER</th>
          <th scope="col">COLOR</th>
          <th scope="col">DETAILS</th>
        </tr>
        <%
    While ((Repeat1__numRows <> 0) AND (NOT rs_socks.EOF))
    %>
        <tr>
          <td><div align="center"><%=(rs_socks.Fields.Item("socks").Value)%></div></td>
          <td><div align="center"><%=(rs_socks.Fields.Item("gender").Value)%></div></td>
          <td><div align="center"><%=(rs_socks.Fields.Item("color").Value)%></div></td>
          <td><div align="left"><%=(rs_socks.Fields.Item("details").Value)%></div></td>
        </tr>
        <%
      Repeat1__index=Repeat1__index+1
      Repeat1__numRows=Repeat1__numRows-1
      rs_socks.MoveNext()
    Wend
    %>
      </table>
    </div>
    </body>
    </html>
    <%
    rs_socks.Close()
    Set rs_socks = Nothing
    %>

  • Query string filter webpart ampersand issue

    Hi
    I need to send the query string to infopath form, so for this i am using Query String Filter webpart. It works great but when there is ampersand (&) in the querystring, it does not read after ampersand value.
    Ex - I am having the URL
    http://sharepointsitecollectionURL/Pages/Default.aspx?Parameterval=One
    & two
    So in above it reads parameter value is "one" and ignore "two"
    I know that if i replace the ampersand in querystring with %26, it will read "one & two". But some other system is hitting this URL and i cannot modify the URL in that system.
    Please let me know if anyone knows the solution 
    Thanks

    I think & won't work in the query string filter webpart.
    Please check this
    http://mysharepointwork.blogspot.in/2011/05/query-stringurl-filter-web-part-with.html
    http://stackoverflow.com/questions/2681997/moss-filter-webpart-not-working-with-symbol-in-the-query-string
    http://bighow.net/3800725-MOSS_Filter_webpart_not_working_with__amp__symbol_in_the_query_string.html

Maybe you are looking for

  • TS1389 How do I authorize my computer with iTunes

    How do I authorize my computer to download music? I went to the support page which told me to simply "click authorize computer" on the store menu, but unfortunately that doesn't exist   The support page is wrong, so how would I really authorize my co

  • Preview of ESS MSS iviews in EP 6.0 SP2

    Hello                                                                                I have followed the following steps:                                                                                Create R/3 System in portal                      

  • Open URL with Dreamweaver

    I'm a webdeveloper who works with tons of different pages each day.  Many of these are sent as URLs by others in the organization, via email, etc. To increase efficiency, I'd like to use our testing environment to automatically open URLs with Dreamwe

  • Encode shared key signature in Azure Storage Queue

    I'd like to use Azure storage REST api for queue, and in order to add the authentication infomation to the http header, I have to get the shared key. From http://msdn.microsoft.com/en-us/library/azure/dd179428.aspx, I saw the string to sign like this

  • I lost my admin password and the installation discs. How can I reset my admin password ?

    I lost my admin password and the installation discs. How can I reset my admin password ?