Querystring parameters to URL in Page View Web Part

V

Venkat

H
I am using a data view to display data from my datasource in Share Point services running on Win Server 2003
I am also using a Page View web part to display my .aspx page.In order to syncronize I want to pass Query string paramenter to the URL as paramenters

How can I pass the parameters from the Query String of the existing Share Point services page

Please any one help!!!

Thanks
 
S

Stefan B Rusynko

For help on SharePoint services running on Win Server 2003 you may want to try:
news://msnews.microsoft.com/microsoft.public.sharepoint.windowsservices




| Hi
| I am using a data view to display data from my datasource in Share Point services running on Win Server 2003.
| I am also using a Page View web part to display my .aspx page.In order to syncronize I want to pass Query string paramenter to the
URL as paramenters.
|
| How can I pass the parameters from the Query String of the existing Share Point services page?
|
| Please any one help!!!!
|
| Thanks
 
K

Kevin Spencer

Hi Venkat,
How can I pass the parameters from the Query String of the existing Share
Point services page?

Pass them to what? Your WebParts? You would have to build custom WebParts to
do that. It can be done if you're a programmer, running Windows Server 2003
on your development machine, have Visual Studio.Net and WSS installed on
the same machine, and download and install the WebParts SDK from the
Microsoft web site.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Venkat said:
Hi
I am using a data view to display data from my datasource in Share Point
services running on Win Server 2003.
I am also using a Page View web part to display my .aspx page.In order to
syncronize I want to pass Query string paramenter to the URL as paramenters.
 
V

Venkat

Dear Kevin ,
thanks for the response.
So Developing a Web Part allows me to access the Query string parameners of the WSS Page on Which the web part is included ?
What i exactly is to customize the Share Point Services using Front Page and ASP.NET.But I am unable to Write ASP.NET code using ASP.NET directly in the the pages as it does not allow to use Server side coding in the Share point service pages "AllItems.aspx".
Using web parts ...Can I have the session information from WSS for e.g, Login User , passing infromation of the item selected from a data view web part to my custom web part.

Thanks
Venkat
----- Kevin Spencer wrote: -----

Hi Venkat,
How can I pass the parameters from the Query String of the existing Share
Point services page?

Pass them to what? Your WebParts? You would have to build custom WebParts to
do that. It can be done if you're a programmer, running Windows Server 2003
on your development machine, have Visual Studio.Net and WSS installed on
the same machine, and download and install the WebParts SDK from the
Microsoft web site.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Venkat said:
Hi
I am using a data view to display data from my datasource in Share Point
services running on Win Server 2003.
I am also using a Page View web part to display my .aspx page.In order to
syncronize I want to pass Query string paramenter to the URL as paramenters.
 
K

Kevin Spencer

Hi Venkat,

Windows SharePoint Services are built on the Microsoft ASP.Net platform. The
SharePoint WebPartPage is derived from System.Web.UI.Page, and WebPart is
derived from system.Web.UI.Control, so the Page class has all the
properties, methods, and events of an ASP.Net Page, and a WebPart has all
the properties, methods, and events of a Server Control. As such, yes, a
WebPart has access to the Page it resides in, as well as all of the current
HttpContext, including QueryString, Session, etc.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Venkat said:
Dear Kevin ,
thanks for the response.
So Developing a Web Part allows me to access the Query string parameners
of the WSS Page on Which the web part is included ?
What i exactly is to customize the Share Point Services using Front Page
and ASP.NET.But I am unable to Write ASP.NET code using ASP.NET directly in
the the pages as it does not allow to use Server side coding in the Share
point service pages "AllItems.aspx".
Using web parts ...Can I have the session information from WSS for e.g,
Login User , passing infromation of the item selected from a data view web
part to my custom web part.
 
Top