Hi,
I am creating a survey tool for Sharepoint where the admin can initially put in a number and description for the project he wants the survey to be created for. Then the admin sends out the link to the survey for the questions to be filled in by a customer. The link directs to a custom form I created in Sharepoint and it is composed of the link to the .aspx page and the ID of the individual survey. I created this link in SharePoint Designer:
<a href=http://mysite/sitecollection/Lists/Survey/CustomEditForm.aspx?ID={$thisNode/@ID}></a>
Unfortunately this link only works for the admin account but not for other accounts I tested. I think it is because of the wrong parameter because ID is not a global variable and only works for the user who created the survey. Is there any other variable I could use to send out the correct link?
I guess I am just looking for another (custom) parameter that can be passed to my custom form.
I've tried this but the solution did not work for me: http://support.microsoft.com/kb/972225
Thanks in advance for any help!