ObjectiveThis article will give a very high level description on various forms on a SharePoint list.
When we create a new custom list in SharePoint, SharePoint creates three forms (*.aspx) for the custom list. In fact for all list these forms are provided by SharePoint. Let us say, there is a list called TestList in your SharePoint site. Columns of list are as follows; Adding New ItemNow when you add new item in the list, NewForm.aspx will get open. You can see the below URL in your browser while adding new item in the list. http://ABCSERVER:9722/sites/Test4/Lists/TestList/NewForm.aspx?RootFolder=%2Fsites%2FTest1%2FTest4%2FLists%2FTestList&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx
There are two query parameters, 1. RootFolder: This parameter defines, in which folder Item will get saved. 2. Source: This parameter defines after completion of action where to navigate. Note: More on these two parameters in next articles. Editing Existing ItemNow when you edit existing item in the list, EditForm.aspx will get open. You can see the below URL in your browser while editing existing item in the list. http://ABCSERVER:9722/sites/Test1/Lists/TestList/EditForm.aspx?ID=3&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx
There are two query parameters, 1. ID: This parameter takes id of the item in list to be edited. If you pass ID which does not exist in the list, SharePoint will throw you below error.
2.Source: This parameter defines after completion of action where to navigate. Displaying Existing ItemNow when you display existing item in the list, DispForm.aspx will get open. You can see the below URL in your browser while editing existing item in the list. http://ABCSERVER:9722/sites/Test1/Lists/TestList/DispForm.aspx?ID=3&Source=http%3A%2F%2Fc849uss%3A9722%2Fsites%2FTest1%2FTest4%2FLists%2FTestList%2FAllItems%2Easpx&RootFolder=%2Fsites%2FTest1%2FTest4%2FLists%2FTestList There are two query parameters, 1. ID: This parameter takes id of the item in list to be displayed. 2. Source: This parameter defines after completion of action where to navigate. Thank you and enjoy. |