Junk Query String to Avoid Caching

Hi,
I'm trying to create a "junk" query string to avoid page
caching. I'm also trying to attach the query string on each refresh
of the page, since the page contains a Flash object that needs to
be refreshed each time (it's reading XML that changes regularly).
The technique I'm using in the attached code seems to work on every
browser besides Mac Firefox. On Mac Firefox, every
second refresh generates a unique query string, but every
other refresh uses the query string first generated during
that session when the page is requested without a query string. Is
there anything I should change to enforce randomness on Firefox?
You can see
Thanks!

I know it seems that way, but the issue is that this code is
for a Flash site. I don't think most browsers will redownload the
Flash movie, even on a refresh, unless the URL is unique. Unless
the cookie is set and the code checks for it, the browser will
request the same url on a refresh, so updates to the Flash movie
might not be reflected.
Also, I'm not sure if the last line is redundant. In order to
work correctly, the value of the cookie needs to be reset on each
refresh, and the first cfelseif clause won't accomplish that (it'll
only assign the value if no cookie already exists, and is really
only a failsafe in case the page is refreshed before a cookie is
set).
Also, if I just use:
<cflocation url="index.cfm?noCache=#Rand('SHA1PRNG')#">
at the top, won't that just create an infinite loop of
redirects?
I might be missing something here though, please let me know
if I am.
Thanks for all the help so far!

Similar Messages

  • Page not cached because "URL contains query string"

    I have used JDeveloper to produce a search/display page using ADF where the user enters search criteria and then presses a Search command button. The parameters are POSTed to the webserver, and I need to devise a cache rule to cache pages using the entered search criteria so that another seach for the same values can be served from the cache.
    I have created a rule that will cache GET, GET with Query String and POST.
    I have put .* in the POST body. When I do this, the first query page is retrieved from the origin server and cached and resulting queries with different search criteria are returned the data for that first search (ie. it's not taking into account the search parameters).
    If I switch off that rule and look at what's being received, I see the following:
    /158.234.27.10:8889/BM/faces/physical.jsp POST;;;event=&form1:selectOneChoice1=0&form1:selectOneChoice2=&form1:selectedDate=2004-08-10&form1:table1:rangeStart=0&form1:table2:rangeStart=0&form1:table3:rangeStart=0&form1:table4:rangeStart=0&form1:table5:rangeStart=0&form1:table6:rangeStart=0&oracle.adf.faces.FORM=form1&oracle.adf.faces.STATE_TOKEN=3&source=form1:commandButton1;;
    Now, there are 3 search parameter fields that need to be considered - the others should be ignored:
    form1:selectOneChoice1
    form1:selectOneChoice
    form1:selectedDate
    It's not clear to me where (and how - in what format) I specify parameters to ignore and parameters to consider. I have tried listing these 3 parameters in the URL parameters table for the Rule (I did not specify a value - should I have done?) but when I do this, the page is not cached and shows the reason for this is that "URL Contains Query String".
    Can someone explain how to specify important POST body parameters and unimportant POST body parameters?
    Thanks,
    Andy

    Hi,
    Please go through this:
    http://download-west.oracle.com/docs/cd/B14099_02/caching.1012/b14046/cache.htm#sthref1530
    Hope it helps you. I think you should be able to configure the intended rule in Web Cache.
    Regards,
    Priyanka GES

  • Getting extracter 'N' in query string from weblogic  server

    hai,
    I am using weblogic7.0 as app server and mssql2000 as database server.
    When writing sql queries i am using prepared statements.
    Ex:
    PreparedStatement pstmt=con.preparedStatement("select email from temp where tempid=?")
    pstmt.setString(1,"0000A");
    after executing the above query. If i check the query statement in database profiler
    then i am getting the following stament:
    select email from temp where tempid=N'0000A';
    here i am getting an extra character 'N' in the query string.
    Can anybody tell me how can i avoid that.
    Thanks in advance
    --durga

    durga wrote:
    hai,
    I am using weblogic7.0 as app server and mssql2000 as database server.
    When writing sql queries i am using prepared statements.
    Ex:
    PreparedStatement pstmt=con.preparedStatement("select email from temp where tempid=?")
    pstmt.setString(1,"0000A");
    after executing the above query. If i check the query statement in database profiler
    then i am getting the following stament:
    select email from temp where tempid=N'0000A';
    here i am getting an extra character 'N' in the query string.
    Can anybody tell me how can i avoid that.
    Thanks in advance
    --durgaHi. The driver is putting that there to ensure that if your parameter is a
    true-16-bit character that the DBMS doesn't corrupt it.
    If your string data are guaranteed to be simple English 7-bit ASCII
    characters, there's a driver property you can add to the pool connection
    properties that will tell the driver not to put the "N'" prefix. This is
    an important performance benefit because the "N'" will stop the DBMS from
    using varchar indexes in searches.
    If you are using the weblogic mssqlserver driver, add the useVarChars=true
    property. If you are using the MS free driver or the DataDirect driver,
    add a property sendStringParametersAsUnicode=false.
    Joe

  • Query strings?

    Hey,
    I'm fairly new to html and web design, but I'm wondering: why does Muse add query strings on every static resource url? There must be a reason I don't understand, but removing them all manually works, thus my question.
    Thx in advance for the answers.
    Alucryd

    Static HTML/CSS/JS is most often cached in the browser. These strings prevent that caching.
    explained:
    http://guyellisrocks.com/coding/automatically-keeping-css-file-current-on-any-web-page/
    Removing the strings is not ideal if you intend to update the page later.

  • Another bug in Flex? (Application.parameters and query strings)

    I'm passing in two query string parameters in the source of SWFLoader and both of them are clumped together in the first parameter by application.parameters.
    But I switch the order of the parameters in the query string and both parameters are returned correctly:
    Case #1:
    Query String:  ?cfg=zzzzzzz54B&embed_div=x
    parameters.cfg: zzzzzzz54B&embed_div=x
    parameters.embed_div:  [nothing]
    Case #2:
    Query String:  ?embed_div=x&cfg=zzzzzzz54B
    parameters.cfg: zzzzzzz54B
    parameters.embed_div: x
    Here is the actual debug commands:
    Dumper.info(this.url);
    Dumper.info(this.parameters.cfg)
    Dumper.info(this.parameters.embed_div);
    And output:
    (Case #1)
    [INFO]: file:///C:/Program%20Files/WordRad234/chm/wordrad_kt/web%20pages/zzzzzzz5/rad_3xf.swf?cfg =zzzzzzz54B%26embed_div%3Dx (String)
    [INFO]: zzzzzzz54B&embed_div=x (String)
    [INFO]: (Object)
    (Case #2)
    [INFO]: file:///C:/Program%20Files/WordRad234/chm/wordrad_kt/web%20pages/zzzzzzz5/rad_3xf.swf?emb ed_div=x&cfg=zzzzzzz54B (String)
    [INFO]: zzzzzzz54B (String)
    [INFO]: x (String)
    Something I just noticed: the equal sign after embed_div is replaced by %3D but only if embed_div comes last.

    NEVERMIND:
    It was something I was doing  to the source of SWFLoader beforehand (involving encodeURIComponent).
    I have to say, I have many, many times thought something was a bug in Flex and it was in fact my code.  In general, I think Flex/AS3 is an elegant and useful product.  The sort of ad hoc  tweaks that have to be done to avoid memory leaks though is ridiculous (though I do have that figured out pretty much as well.)

  • Reverse proxy query strings

    Hi
    got a reversse proxy running but no url's are cache where a query string is in the url. gif,doc, pdf are cached ok. what the max value for query-maxlen? will it accept 2000?
    any other ideas to check and try. i can't see any log into to tell my why it not cachiiiing these requests.

    version 4.0 b 05/10/2005
    request url is /wcm001/idcplg?idcservice=SS_Get_page&nodeid=308
    URL DB cache /wcm001/idcplg
    User clicks on page tab and requests wcm001/idcplg?idcservice=SS_Get_page&nodeid=309&sssourcenodeid=308
    nothing happens, the home page i displayed agian.
    query_maxlen=2000. set it to 32 and no difference. HTML header traces show web browser did make a new request to the proxy server for the different query string

  • How to retrieve query string value from the URL in my portlet

    Hi,
    When user clicks on "Advance Search", i am redirecting to page in the community. At the same i am adding some more values to the query string (to the URL).
    My URL will look like this.
    http://ctp-mc0149/portal/server.pt?space=CommunityPage&parentname=CommunityPage&parentid=0&in_hi_userid=200&cached=true&control=SetCommunity&PageID=202&CommunityID=200&searchType=2
    Now in one of my portlet in that page, i want to retrieve the query string values from the URL.
    Please help me regarding this.
    Thanks in advance.
    Thanks,
    sreekanth.

    Hi,
    Look at the following threads,
    For programmatically getting the iview properties,
    Programmatically getting iView Properties
    Also,
    Get Properties of IView Programmatically
    Permanent change of iView property programmatically
    Hope these threads help u.
    Regards
    Srinivasan T

  • Links to Word docs on IE6 dump binary to browser, unless add query string

    I'm seeing a weird problem with a small app running on WLS 8.1, using IE6 as the browser. The app has several links to PDF documents and MS Word docs.
    When I follow a plain link to a MS Word doc, the contents get dumped into my browser window as binary gibberish. If I change the URL by adding "?a" to the end (a non-empty query string), it correctly asks me if I want to open MS Word to read the document.
    Plain links to PDF documents work fine, as do plain links to PDFs or MS Word docs while in Netscape.
    I tried adding a "mime-type" mapping in my web.xml for "application/msword", but that didn't appear to make any difference.
    What is going on here?

    Never mind. After I added the mime-type setting, I found I had to forcibly clear the browser cache, and then it started working.

  • SSOServlet - query string parameters being lost

    Hi,
    We recently upgraded ALUI from version 5.04J to 6.1. After the upgrade, we noticed one issue with the redirection. When the user is not logged in & accesses a secure commnity, he/she is redirected to the SSO Servlet. For instance, if the following URL is accessed
    /portal/server.pt?open=512&objID=326&PageID=0&cached=true&mode=2&userID=2&CommunityID=326
    the user should be redirected to (as in version 5.04J)
    /portal/SSOServlet?open=512&objID=326&PageID=0&cached=true&mode=2&userID=2&CommunityID=326
    Instead the user is redirected to /portal/SSOServlet?
    (without the query string)
    Does anyone know why?
    Thanks,
    Dev

    I've tired doing this and it did not work for me. However, I was able to find a solution that helped me a whole lot.
    After running all test runs - I found a solution that helped me take off the extra parameters that Eloqua adds to all URL's.
    I created my urls without placing "http://" or "https://" or http://www." or "https://www." and that helped take off all tracking.
    Re: Use of tinyUrl

  • Encoding Arabic Values in Query String

    Hello,
    I am a new oracle developer, and I am requested to aid a .net team in integrating our 10g application with a .net application. The problem is that the .Net team has required that the Arabic values should be encoded so that their code can decode it and read the Arabic values. For a reason I think Arabic and .net application in query strings does not work it returns "????" how can I encode the Arabic word and make sure they can be able to decode it?
    Thank you so mych in advance it is really appreciated.
    Best Regards,

    Gor_Mahia wrote:
    onedbguru
    I'll revisit and marks acordingly i.e helpful but the other solution worked for me...thank you.It may have worked for you, but TABLE(XMLSEQUENCE is deprecated functionality so should be avoided.
    That's what happens when you take a 'correct' answer on face value rather than actually reading up on it and understanding if it really is a correct answer.
    The issue you have described is the "Varying IN list" issue which is commonly asked here, and Tom Kyte's blog on it is a suitable reference for dealing with it.
    Other methods are described in the FAQ: {message:id=9360009}
    You would be better to re-visit the solutions and pick one that is better, that doesn't use deprecated functionality.

  • Trouble with primary key in query string

    Switching from asp to php, so working with David Power's book:  The Essential Guide to Dreamweaver CS4 with CSS, AJAX and PHP.  Retraining my brain, so starting from scratch in the learning process.
    Everything was going perfectly until I tried to add a record's primary key to a query string.  I have compared my code with the book's example code, and everything matches.  When previewing the page in my browser, and hover over the link that should pass the primary code to the next page, the query string doesn't display properly.  It shows user_id=    but no number shows, as it is supposed to.  www.webpage.com/update_user.php?user_id=
    Here is my code: (please note, <> have been removed, as I was unable to figure out how to display the code the correct way on here (copy/paste was not working, nor Insert Syntax highlighting)
    ?php do { ?       
    ?php echo $row_listUser['family_name']; ?, ?php echo $row_listUser['first_name']; ?       
    ?php echo $row_listUser['username']; ?       ?php echo $row_listUser['admin_priv']; ?     
    a href="update_user.php?user_id=?php echo $row_listUser['user_id']; ?"Edit/a     
    a href="delete_user.php?user_id=?php echo $row_listUser['user_id']; ?"Delete/a         
    ?php } while ($row_listUser = mysql_fetch_assoc($listUser)); ?
    Any ideas that could help me figure out why this part in particular isn't working would be greatly appreciated.  Writing to the database worked perfectly, I see that there are numbers in the database under user_id, and it is set as my primary key in the database setup.  Such a simple process that is causing me such a headache!
    Thanks

    Hoping this will work- complete code of page.  Hopefully you can see what isn't right!
    <?php require_once('../Connections/connSCFDIR.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_connSCFDIR, $connSCFDIR);
    $query_listUser = "SELECT user_id, username, first_name, family_name, admin_priv FROM users ORDER BY family_name ASC";
    $listUser = mysql_query($query_listUser, $connSCFDIR) or die(mysql_error());
    $row_listUser = mysql_fetch_assoc($listUser);
    $totalRows_listUser = mysql_num_rows($listUser);
    $query_listUser = "SELECT username, first_name, family_name, admin_priv FROM users ORDER BY family_name ASC";
    $listUser = mysql_query($query_listUser, $connSCFDIR) or die(mysql_error());
    $row_listUser = mysql_fetch_assoc($listUser);
    $totalRows_listUser = mysql_num_rows($listUser);
    ?>
    <?php require_once('../css/scf_admin.css'); ?>
    <!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></title>
    <link href="/css/scf_admin.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 220px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="/SCFSpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="/SCFSpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixRtHdr">
    <div id="container">
      <div id="header">
      <div id="mainContent"><br />
      <h1>View Users</h1>
      <table width="500" border="1">
      <tr>
        <td>Name</td>
        <td>Username</td>
        <td>Administrator</td>
        <td> </td>
        <td>  </td>
      </tr>
      <?php do { ?>
        <tr>
          <td nowrap="nowrap"><?php echo $row_listUser['family_name']; ?>, <?php echo $row_listUser['first_name']; ?></td>
          <td><?php echo $row_listUser['username']; ?></td>
          <td><?php echo $row_listUser['admin_priv']; ?></td>
          <td><a href="update_user.php?user_id="<?php echo $row_listUser['user_id']; ?>">Edit</a></td>
          <td><a href="delete_user.php?user_id="<?php echo $row_listUser['user_id']; ?>">Delete</a></td>
        </tr>
        <?php } while ($row_listUser = mysql_fetch_assoc($listUser)); ?>
      </table>

  • Query String not having any effect in MSIE

    I have a very strange problem. I have a set of JSPs that uses a date to change the result of the page, and passes that date in a query string. So:
    http://mysite.com/result.jsp?date="2003-08-02"
    should produce a different result from
    http://mysite.com/result.jsp?date="2003-07-25"
    The operation works just fine in Mozilla, but when I click on the same set of hyperlinks using Internet Explorer the displayed page is always the same. What is displayed is consistent with what I should see if the query string was NULL or if it was empty, but I cannot tell whether that is the problem - that is, whether the browser is passing nothing. However, the link that is displayed in the address bar contains the proper query string, even when the displayed page is incorrect.
    Thinking that this might be a cache problem, I tried adding lines to disable the browser cache:
    <META http-equiv="Cache-Control" content="no-cache">
    <META http-equiv="Pragma" content="no-cache">
    Although come to think of it, I am not sure that I put those in the right place. Should those go in between the <head> and </head> tags, or before the <head> tag?
    That is a pretty basic question, but I just don't use META tags very much.
    Any help will be much appreciated. Thank you in advance.
    Charlie

    I don't know the answer off the top of my head, and I don't have a Mozilla browser installed on this computer.
    However, the easiest way to define the problem appears to be to create a new JSP page that simply repeats back to the user what the passed parameters are. Something along the lines of...
    <BODY>
    <HR>
    <P>
    DATE = <%= request.getParameter( "date" ) %><BR>
    </P>
    <HR>
    </BODY>
    I realize this is painfully obvious, but I've found that many of my students don't realize that they can write debugging tools as well, or likewise test and eliminate possibilities.
    I know you (Cac67) have already tried this, but my first guess would be that the JSP is somehow getting 2003-08-02 just fine from Mozilla, and yet only 2003 from IE; everything after the hyphen is truncated.
    And yes, all metatags go between the <HEAD> and </HEAD> tags.

  • QSUF (Query string url filter) and SQL Server reporting services report viewer parameters

    Hi,
    this is my issue:
    I have a SQL Server reporting services web part on a page with a report with 1 parameter, lets say it's a client list
    Then i have a QSUF that will be used to filter the clients list through the URL
    However, once i connect the filter and the report viewer web part, the parameter goes away and is no longer accessible
    I'd like to somehow keep the parameter visible, in case there is no parameter sent through the URL, i would like the user to be able to choose a client from the parameter drop down list
    I saw that there is a "send empty if no values are passed" option, but i can't seem to get this working properly and i don't know if this option will make the parameter visible again
    Any help would be appreciated
    Thanks.

    Hi,
    According to your post, my understanding is that the query string url filter web part not worked well with SQL server reproting services web part.
    Did you use the Wiki page layout in your environment?
    You can change the page to a web part page, then check whether it work.
    There is a similar thread for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4d7584e3-8e1a-48bf-9346-32f8cb480dd1/query-string-url-filter-web-part?forum=sharepointgeneralprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How do I add a record's primary key to a query string and add that to an .xml catalog?

    Hello everyone,
    I am using Dreamweaver CS3 on a MacBook Pro Leopard 10.5.6 and MAMP 1.7. I am also teaching myself how to work with PHP and MySQL, using David Powers book The Essential Guide to Dreamweaver CS3.
    I am trying to create a wedding photography web site, with a personal page after login, which will display the photographs of the customers wedding.
    The same page will also be a catalog/shopping cart, so the customer can choose which photo's they want, and pay for them. (I am aware that there are instructions in The Essential Guide in chapter 15 page 515, on how to redirect to a personal page, but it doesn't fully cover what I am asking).
    I have already created the login success page, which greets users by name, as per the instructions in The Essential Guide. I have also created a catalog page. However my catalog page is not calling information from the database, instead it is taking information from an XML page using PHP.
    I would like to insert a list menu on the login success page, which lists the customers name, and when they select their name they will then select a link that will take them to a personal page with just their wedding photographs.
    I am unsure of how to pass the customer_id, in what will be the username list menu, to the page which will contain the customers set of wedding images.
    Is it the same process used in chapter 14 where you add a record's primary key to a query string?
    I am asking because when I set up a recordset from the MySQL database it lists the images as witten names not actual images, I have tried calling the images with PHP code but it just doesn't work.
    The catalog page I have set up at the moment is not calling the images from the database, but directly from the image folder.
    Is what I am trying to do possible?
    If so how do I pass the customer_id and username to a recordset and link that recordset to the xml catalog so the customers personal wedding images are displayed on the catalog page for the shopping cart?  I need step by step instructions, or maybe a link to a good tutorial.
    Can somebody help me please?
    Thankyou.

    QuickTime 7 can set the poster frame, but I've not had much success with it. This is what QuickTime 7 Help says about this topic:
    +A "poster frame" is a still image of a movie that represents the movie in places like the Finder. The default poster frame is the first frame in the movie. You can change the poster frame.+
    +To change a movie's poster frame:+
    +In QuickTime Player 7, drag the playhead (or use the arrow keys to move the playhead) to the desired frame.+
    +Choose View > Set Poster Frame.+
    +To view a movie's poster frame, choose View > "Go to Poster Frame."+
    If you don't have QuickTime 7 (version 7.6.6) it can be installed from your Snow Leopard disc using a custom install. Otherwise download it from this Apple site: http://support.apple.com/kb/DL923
    John

  • 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

Maybe you are looking for

  • Trouble including registered XML Schema in generated XML

    Hello, I'm new to XMLDB, and find myself wanting to build an XML document that conforms to a paricular XML schema. I'm looking for help in "passing" the shema into the xml query, and for advice (i may not be going about things in the best way possibl

  • Inappropriate ioctl for device

    Hello, I have some zones set up in solaris 10. When i try to scp a file to any of the zones, i get the following error: "shell-init: error retrieving current directory: getcwd: cannot access parent directories: Inappropriate ioctl for device" 1. /exp

  • Airport card differences

    is there a difference between M8881LL/A & M8881 on the airport extreme cards? i'm looking for a card for an imac 17in. flat panel 1ghz. thanx, jts

  • [Solved] Named Bind Variables at Runtime - SQL WHERE clause issue

    Hey 'all, I've been having this issue today with a Search page using Named Bind Variables at Runtime for the search parameters for the WHERE clause in the view objects SQL. I've got everything working except for a clearing method which I've created s

  • Question for load VRML file with scale and position missed

    Hi, I trid to read a .wrl file from the "load VRML" vi, most simple .wrl models can be correctly read but for some more compliacted models their scales and positions were incorrect. I attached the file which I read the .wrl file and a car model from