<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: QueryString &#8211; get parameters from URL with JavaScript</title>
	<atom:link href="http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/</link>
	<description>and Boris Gomiunik</description>
	<lastBuildDate>Mon, 19 Jul 2010 19:49:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-421</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Mon, 25 Jan 2010 07:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-421</guid>
		<description>@Vinoth Kumar: Hello. This function is a bit obsolete. Can you perhaps try replacing the function with the following one:

function queryString(paramName) {
	var args = document.location.search.substring(1).split(&quot;&amp;&quot;);
	for(i = 0; i &lt; args.length; i++) {
		nameValues = args[i].split(&quot;=&quot;);
		if(nameValues[0] == paramName) return nameValues[1];
	}
	return null;
}</description>
		<content:encoded><![CDATA[<p>@Vinoth Kumar: Hello. This function is a bit obsolete. Can you perhaps try replacing the function with the following one:</p>
<p>function queryString(paramName) {<br />
	var args = document.location.search.substring(1).split(&#8220;&#038;&#8221;);<br />
	for(i = 0; i < args.length; i++) {<br />
		nameValues = args[i].split(&#8220;=&#8221;);<br />
		if(nameValues[0] == paramName) return nameValues[1];<br />
	}<br />
	return null;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinoth kumar</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-395</link>
		<dc:creator>vinoth kumar</dc:creator>
		<pubDate>Mon, 11 Jan 2010 22:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-395</guid>
		<description>I need help to pass a querystring from sharepoint page to aspx page the querystring doesnot seems to work.

we pass the url querystring from sharepoint content publishing page to ordinary aspx page.

also we found that the querysting it not visible correctly in status bar

expected query string  http://domain.com/new.aspx?s=mike

visible qery string http://domain.com/new.aspx?s=

is ther any security setting prventing it</description>
		<content:encoded><![CDATA[<p>I need help to pass a querystring from sharepoint page to aspx page the querystring doesnot seems to work.</p>
<p>we pass the url querystring from sharepoint content publishing page to ordinary aspx page.</p>
<p>also we found that the querysting it not visible correctly in status bar</p>
<p>expected query string  <a href="http://domain.com/new.aspx?s=mike" rel="nofollow">http://domain.com/new.aspx?s=mike</a></p>
<p>visible qery string <a href="http://domain.com/new.aspx?s=" rel="nofollow">http://domain.com/new.aspx?s=</a></p>
<p>is ther any security setting prventing it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subbiah Mani</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-80</link>
		<dc:creator>Subbiah Mani</dc:creator>
		<pubDate>Mon, 08 Dec 2008 05:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-80</guid>
		<description>Great Help !!!!
Thanks a ton.</description>
		<content:encoded><![CDATA[<p>Great Help !!!!<br />
Thanks a ton.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pushkar</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-79</link>
		<dc:creator>pushkar</dc:creator>
		<pubDate>Wed, 23 Jan 2008 07:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-79</guid>
		<description>hi,&lt;br/&gt;i have a calendar list which has recurring and non-recurring tasks.&lt;br/&gt;i am trying to modify the editform.aspx of the calendar list by making the sharepoint default ListFormWebPart invisible and inserting my custom edit webpart from &quot;insert&quot;-&quot;sharepoint controls&quot;-&quot;custom list form&quot; because i want certain fields to be non-editable.&lt;br/&gt;the problem is that the tasks can be edited but the daily tasks cant be.If i open to edit the daily task from the calendar it just shows the  toolbar. i wanted to know if there&#039;s a way out.&lt;br/&gt;thanks</description>
		<content:encoded><![CDATA[<p>hi,<br />i have a calendar list which has recurring and non-recurring tasks.<br />i am trying to modify the editform.aspx of the calendar list by making the sharepoint default ListFormWebPart invisible and inserting my custom edit webpart from &#8220;insert&#8221;-&#8221;sharepoint controls&#8221;-&#8221;custom list form&#8221; because i want certain fields to be non-editable.<br />the problem is that the tasks can be edited but the daily tasks cant be.If i open to edit the daily task from the calendar it just shows the  toolbar. i wanted to know if there&#8217;s a way out.<br />thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naresh</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-78</link>
		<dc:creator>naresh</dc:creator>
		<pubDate>Tue, 22 Jan 2008 13:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-78</guid>
		<description>Thanks a lot .it worked.</description>
		<content:encoded><![CDATA[<p>Thanks a lot .it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-77</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Sun, 18 Nov 2007 12:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-77</guid>
		<description>Hi, PsychedEric. Here&#039;s a reply in an extra post I&#039;ve made: &lt;br/&gt;&lt;br/&gt;&lt;a HREF=&quot;http://webborg.blogspot.com/2007/11/using-parameters-from-url-as-variables.html&quot; REL=&quot;nofollow&quot;&gt;Using Parameters from URL as variables in XSLT Data View&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;If you need dates, you can even make the web part connection. If you&#039;ll use dates in URL, you have to make it in appropriate format - you can see the format if you enter &lt;xsl:value-of select=&quot;@Created&quot; /&gt; in the XSLT Data View.</description>
		<content:encoded><![CDATA[<p>Hi, PsychedEric. Here&#8217;s a reply in an extra post I&#8217;ve made: </p>
<p><a HREF="http://webborg.blogspot.com/2007/11/using-parameters-from-url-as-variables.html" REL="nofollow">Using Parameters from URL as variables in XSLT Data View</a></p>
<p>If you need dates, you can even make the web part connection. If you&#8217;ll use dates in URL, you have to make it in appropriate format &#8211; you can see the format if you enter &lt;xsl:value-of select=&#8221;@Created&#8221; /&gt; in the XSLT Data View.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PsychedEric</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-76</link>
		<dc:creator>PsychedEric</dc:creator>
		<pubDate>Wed, 07 Nov 2007 11:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-76</guid>
		<description>&quot;Using XSLT with SharePoint Designer you can also get these parameters with XSLT&#039;s QueryString.&quot;&lt;br/&gt;&lt;br/&gt;I am a student working for a company, and I am developing under sharepoint designer. I need to pass ( get ) the parameter from the url into an xsl variable.&lt;br/&gt;&lt;br/&gt;I would like to know where I could find these parameters in sharepoint designer.&lt;br/&gt;&lt;br/&gt;In fact I need to replace in an xsl:if the test with ddwrt:Today(), by a date I choose in an input text ( or something else ).&lt;br/&gt;&lt;br/&gt;I hope you have a solution.&lt;br/&gt;&lt;br/&gt;Eric</description>
		<content:encoded><![CDATA[<p>&#8220;Using XSLT with SharePoint Designer you can also get these parameters with XSLT&#8217;s QueryString.&#8221;</p>
<p>I am a student working for a company, and I am developing under sharepoint designer. I need to pass ( get ) the parameter from the url into an xsl variable.</p>
<p>I would like to know where I could find these parameters in sharepoint designer.</p>
<p>In fact I need to replace in an xsl:if the test with ddwrt:Today(), by a date I choose in an input text ( or something else ).</p>
<p>I hope you have a solution.</p>
<p>Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petter</title>
		<link>http://www.sharepointboris.net/2007/07/querystring-get-parameters-from-url-with-javascript/comment-page-1/#comment-75</link>
		<dc:creator>Petter</dc:creator>
		<pubDate>Thu, 13 Sep 2007 08:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=74#comment-75</guid>
		<description>It works great! Thanks a million :)</description>
		<content:encoded><![CDATA[<p>It works great! Thanks a million <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
