Create a dropdown list in Sharepoint containing List Documents with links to them -


I'm looking to create a dropdown list on my default .aspx page, which I want to list / Include pages and the document / page is selected, the page needs to be redirected to the selected document / page.

How can this be done, any suggestions of this?

Any examples / specimens will be appreciated?

thanks :)

A selected value in AA drop down and one selected Text is property This will display the selected text.

Store a name or some type of string that recognizes the document as the selected text. Store the actual document hyperlink where this document resides or where the link should be taken to the value you have selected. Set autopost right on the drop down.

Throw this code into an on-the-selected index event:

Response Redirect (Me.ddlLinks.SelectedValue)


Comments

Popular posts from this blog

asp.net - Javascript/DOM Why is does my form not support submit()? -

sockets - Delphi: TTcpServer, connection reset when reading -

javascript - Classic ASP "ExecuteGlobal" statement acting differently on two servers -