vote up 0 vote down star

I am doing webparts in sharepoint and I want to transfer the data from one to another. I tried the 3 ways but they all fail. Any idea? It just says An unexpected error has occurred.

flag

43% accept rate
ow the query string works in some cases and some cases not !!! it says No item exists at http://*******/BIMS/Shared Documents/EditQuestion.aspx?id=3. It may have been deleted or renamed by another user. – Ahmad Farid Jul 23 at 13:29
This isn't very helpful. Can you give complete details about what you've tried? Also search for 'debug sharepoint web part'. You don't have CustomErrors=Off is you are getting that error. – Alex Angas Jul 24 at 8:27

3 Answers

vote up 0 vote down

'Unexpected error' == server error 500? if so, turn on custom error reporting in web.config to find out what the problem actually is.

link|flag
now the query string works in some cases and some cases not !!! it says No item exists at http://*******/BIMS/Shared Documents/EditQuestion.aspx?id=3. It may have been deleted or renamed by another user. – Ahmad Farid Jul 23 at 13:27
vote up 0 vote down

Google "connected web parts" - there's a built-in, easy way to pass data across parts.

link|flag
vote up 1 vote down

Hi Ahmad

If you want to transfer information from one web part to another on the same page the look at "Connected web parts" as Greg suggest

If you want to transfer information to web parts on another page the use the query string but don't use names like "id", "listid", "field" which has special meaning to SharePoint like http:/xxx/Shared Documents/EditQuestion.aspx?id=3 which tells SharePoint to load the doc with ID=3 from the Shared Documents and use that as SPContent.Current.Item

link|flag
yes man i thx. i changed it to k=3 and it worked!! but cant i use session variables or view state? – Ahmad Farid Jul 27 at 9:12
View state can be used without any problem but only works on the single page and you should use it for a control/web part to remeber things which isn't remembered by the html, to communicate with other web-parts use Connections. Session state works fine in MOSS, but is by default disabled in WSS. – Per Jakobsen Jul 27 at 17:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.