Hi All,
Can any sharepoint users help me with this?
I am trying to pass a parameter from the new item url, to a field on the form.
For example, the url might be http://blahblah.com/form.aspx?ticket=1000
and I want to populate the field 'Ticket' in the form with '1000'.
I know this can be done in a regular ASP form using this code for the text field:
but sharepoint doesn't seem to work like this.
Thanks for any help!
Can any sharepoint users help me with this?
I am trying to pass a parameter from the new item url, to a field on the form.
For example, the url might be http://blahblah.com/form.aspx?ticket=1000
and I want to populate the field 'Ticket' in the form with '1000'.
I know this can be done in a regular ASP form using this code for the text field:
Code:
<input type="text" name="myTextField" id="myTextField"
value="<%=Request.QueryString("ticket")%>">
but sharepoint doesn't seem to work like this.
Thanks for any help!