Hi,
This is gonna be a long post but I hope you are so kind to read it.
I've read a lot of threads and websites about this topic but I don't seem to find a decent solution for my problem.
I have a webpage which uses a dropdownlist and some hidden fields to look up and sort data from a database. We'll call this webpage: "DocumentAdministration.aspx". When you select a value from the dropdownlist some results will be displayed. This is how the source code looks like:
On the following code you can see how I use hidden fields to sort the results:
So I'm using "a hrefs" above the results to change the sort directions. Everything works fine, except for the sorting. The hidden fields are filled with the right information, but when I select a sort direction the page is reloaded but the results aren't displayed anymore, until I select a new value from the DropDownList. Now I think the problem is that the javascript only reloads the "html" part of the webpage and not the "codebehind" part. Or it reloads only the "Page_load()" function of the codebehind but not the "ShowDocument()" function. So I've tried to add "window.location.reload()" into the javascript. Now the entire page (and codebehind!) is reloaded but the hidden fields aren't filled anymore so the sorting doesn't work either. Is there a possibility to call the function "ShowDocuments" with javascript? So in my javascript I should have something like "call ShowDocuments(value)". Or am I doing something wrong? I hope I didn't explain this too complicated. The main question is simply if it is possible to call an asp.net function with javascript, and if this isn't possible how I can resolve this.
Hope someone can help,
Thanks
This is gonna be a long post but I hope you are so kind to read it.
I've read a lot of threads and websites about this topic but I don't seem to find a decent solution for my problem.
I have a webpage which uses a dropdownlist and some hidden fields to look up and sort data from a database. We'll call this webpage: "DocumentAdministration.aspx". When you select a value from the dropdownlist some results will be displayed. This is how the source code looks like:
Code:
'codebehind
Sub Page_Load()
*fill DropDownList with data from database*
'this way the page will already display some results when it is loaded
ShowDocuments(1)
End Sub
Sub DropDownListDepts_SelectedIndexChanged(sender as Object, e as EventArgs)
ShowDocuments(dropdownlistdepts.selecteditem.value)
End Sub
Public Function ShowDocuments (ID as integer)
*create an sql statement where the data is looked up from the database with the ID*
*add sort conditions to the sql statement using the hidden fields*
*run sql statement*
End Function
'html
<asp:DropDownList id="DropDownListDepts" runat="server" OnSelectedIndexChanged="DropDownListDepts_SelectedIndexChanged" AutoPostBack="True"></asp:DropDownList>
<% *show results* %>
On the following code you can see how I use hidden fields to sort the results:
Code:
'javascript
function sortListASC(fieldName)
{
document.DocAdmin.sortField.value = fieldName;
document.DocAdmin.sortDirection.value = "ASC";
document.DocAdmin.FormsAction.value = "SORT";
document.DocAdmin.submit();
}
function sortListDESC(fieldName)
{
document.DocAdmin.sortField.value = fieldName;
document.DocAdmin.sortDirection.value = "DESC";
document.DocAdmin.FormsAction.value = "SORT";
document.DocAdmin.submit();
}
function sortList(fieldName)
{
sortFieldValue = document.DocAdmin.sortField.value;
if(sortFieldValue == fieldName)
{
sortDirectionValue = document.DocAdmin.sortDirection.value;
if(sortDirectionValue == "ASC")
{
sortListDESC(fieldName);
}
else
{
sortListASC(fieldName);
}
}
else
{
sortListASC(fieldName);
}
}
'html
<form id="DocAdmin" action="DocumentAdministration.aspx" method="post" runat="server">
<input type="hidden" value="<%=Sort_Direction%>" name="sortDirection" />
<input type="hidden" value="<%=Sort_Field%>" name="sortField" />
*some other html code*
<a style="COLOR: #000080; TEXT-DECORATION: none" href="javascript:sortList('F.USERNAME');"><b>User</b></a> <% If Sort_Field = "F.USERNAME" Then %><a href="javascript:sortList('F.USERNAME');"><img src="images/sorted_<%=Sort_Direction%>.gif" border="0" /></a> <% Else %><img height="10" src="images/sorted_none.gif" width="12" border="0" /> <% End If %></td>
<% *show results* %>
</form>
So I'm using "a hrefs" above the results to change the sort directions. Everything works fine, except for the sorting. The hidden fields are filled with the right information, but when I select a sort direction the page is reloaded but the results aren't displayed anymore, until I select a new value from the DropDownList. Now I think the problem is that the javascript only reloads the "html" part of the webpage and not the "codebehind" part. Or it reloads only the "Page_load()" function of the codebehind but not the "ShowDocument()" function. So I've tried to add "window.location.reload()" into the javascript. Now the entire page (and codebehind!) is reloaded but the hidden fields aren't filled anymore so the sorting doesn't work either. Is there a possibility to call the function "ShowDocuments" with javascript? So in my javascript I should have something like "call ShowDocuments(value)". Or am I doing something wrong? I hope I didn't explain this too complicated. The main question is simply if it is possible to call an asp.net function with javascript, and if this isn't possible how I can resolve this.
Hope someone can help,
Thanks