I'm trying to create a link to my sharepoint site which will be
populated with a querystring like this:

http://sharepoint/sites/entry.aspx?info=abc

in the entry.aspx page, there will be a content editor webpart which
will be pointing to a separate report website which is not a
sharepoint site:

http://bricfi/default.aspx

which will take the info in the querystring value from the entry.aspx
link (info=abc) and present the appropriate information pertaining to
what is in the querystring.

Any ideas?

Re: Read querystring and display info by sezel

sezel
Wed Mar 07 10:49:46 CST 2007

I think it will be a lot easier to develop a custom webpart, which
will be a few lines of code, anyway.

But if you have to use Content Editor, then you'll have to write some
JavaScript for it, which will parse the location string, identify the
querystring, get the parameter, append it to your base URL and
redirect the user to the appropriate site. Have a look at this
article: http://www.eggheadcafe.com/articles/20020107.asp

BTW, this posting really belongs in the .windowsservices.development
group....

Good luck!