pass parameter value from one DVWP(with DropDown Layout) to another CVWP(with tabular layout)
Hi to all
I am using dataview web part.
I am using 4 webservice to populate data.
I have apply the drop down layout on the data view webparts.
I have three dropdown (Country,state,Course) all the data are coming from some web service.
On the basis of country, state will come and on the basis of state and Course the CourseDetails dataview web part will be populated.
I am not able to pass the parameter values from country to state.And from state and course to CourseDetails dataview web part.
How to pass the value from one DVWP(with DropDown Layout) to another CVWP(with tabular layout)
Vinay Kumar Singh
I am using dataview web part.
I am using 4 webservice to populate data.
I have apply the drop down layout on the data view webparts.
I have three dropdown (Country,state,Course) all the data are coming from some web service.
On the basis of country, state will come and on the basis of state and Course the CourseDetails dataview web part will be populated.
I am not able to pass the parameter values from country to state.And from state and course to CourseDetails dataview web part.
How to pass the value from one DVWP(with DropDown Layout) to another CVWP(with tabular layout)
Vinay Kumar Singh
On Anonymous site RSS feed is redirecting to login page
Hi to all,
I have created a list. I queries the the list in Content Query web part. I also enable the RSS feed in the CQWP.
Feed is coming properly. But when I click to some item in the feed then it is redirecting to Login page.
I have made the list anonymous.
I have changed the link
<a href="{$SafeLinkUrl}" originalAttribute="href" originalPath="{$SafeLinkUrl}" mce_href="{$SafeLinkUrl}" originalAttribute="href" originalPath="{$SafeLinkUrl}" target="{$LinkTarget}" title="{@LinkToolTip}">
to
<xsl:text disable-output-escaping="yes">
<![CDATA[<a href="/newsandevents/Lists/XYZ%20News/DispForm.aspx?ID=]]></xsl:text>
<xsl:value-of select="@ID"/>
<xsl:text disable-output-escaping="yes"><![CDATA[">]]></xsl:text>
<xsl:value-of select="$DisplayTitle"/>
<xsl:text disable-output-escaping="yes"><![CDATA[</a>]]></xsl:text>
Now I am able to access the news anonymously from site.But from RSS feed it ask for authentication.
The link in RSS file is like this
http://xyz.co.in/_layouts/CopyUtil.aspx?Use=id&Action=dispform&ItemId=10&ListId=A325A1CF-A064-4573-B17A-3CE893A0D178&WebId=160DC0EC-9418-48F9-A148-A96D40012E45&SiteId=12ff763e-47e4-4e70-a9b3-a33443d5d0b1
So please help me how I made the RSS feed link accessible anonymously of CQWP.
Thanks in advance.
Vinay Kumar Singh
I have created a list. I queries the the list in Content Query web part. I also enable the RSS feed in the CQWP.
Feed is coming properly. But when I click to some item in the feed then it is redirecting to Login page.
I have made the list anonymous.
I have changed the link
<a href="{$SafeLinkUrl}" originalAttribute="href" originalPath="{$SafeLinkUrl}" mce_href="{$SafeLinkUrl}" originalAttribute="href" originalPath="{$SafeLinkUrl}" target="{$LinkTarget}" title="{@LinkToolTip}">
to
<xsl:text disable-output-escaping="yes">
<![CDATA[<a href="/newsandevents/Lists/XYZ%20News/DispForm.aspx?ID=]]></xsl:text>
<xsl:value-of select="@ID"/>
<xsl:text disable-output-escaping="yes"><![CDATA[">]]></xsl:text>
<xsl:value-of select="$DisplayTitle"/>
<xsl:text disable-output-escaping="yes"><![CDATA[</a>]]></xsl:text>
Now I am able to access the news anonymously from site.But from RSS feed it ask for authentication.
The link in RSS file is like this
http://xyz.co.in/_layouts/CopyUtil.aspx?Use=id&Action=dispform&ItemId=10&ListId=A325A1CF-A064-4573-B17A-3CE893A0D178&WebId=160DC0EC-9418-48F9-A148-A96D40012E45&SiteId=12ff763e-47e4-4e70-a9b3-a33443d5d0b1
So please help me how I made the RSS feed link accessible anonymously of CQWP.
Thanks in advance.
Vinay Kumar Singh
Debugging Timer Job Issue
I created a timer job and am trying to debug. I found some samples on the net (Andrew Connell's site) showing a directive to add to the "execute" method: System.Diagnostics.Trace.Assert(false);
I added this, however the pop-up never displays. I can look in the server's System log and it logs the event for the Application Popup, however. The timer job shows a status of "Initialized: 0%" in the "Timer Job Status" page. I'm guessing that its waiting on input from the assertion dialog.
Anyone have any ideas when the popup isn't showing? Thanks!
I added this, however the pop-up never displays. I can look in the server's System log and it logs the event for the Application Popup, however. The timer job shows a status of "Initialized: 0%" in the "Timer Job Status" page. I'm guessing that its waiting on input from the assertion dialog.
Anyone have any ideas when the popup isn't showing? Thanks!
- Edited by adnarimtian Wednesday, August 27, 2008 3:57 PM Rename Title
Reply:
System.Diagnostics.Trace.Assert(false); would not cause a popup. Neither, it would block the current thread waiting for any input.
Normally, you can plugin Trace Listeners to track these tracing events.
--
Madhur
http://blogs.msdn.com/mahuja | Please mark the replies as answers if they help
Normally, you can plugin Trace Listeners to track these tracing events.
--
Madhur
http://blogs.msdn.com/mahuja | Please mark the replies as answers if they help
------------------------------------
Reply:
hmm..interesting. The article I referenced has the code looking like the following (in the execute function):
#if (DEBUG)
System.Diagnostics.Trace.Assert(false);
#if (DEBUG)
System.Diagnostics.Trace.Assert(false);
No comments:
Post a Comment