I'm working on an internal web app and we are using secure query string keys generated server side for some simple security to prevent users from accessing pages they haven't been given access to. The page I am currently working on grabs data via AJAX calls and renders it in a table on the page. Each row has an edit button that will take the user to an edit page with more information, with the id of the row kept in the query string. Since every row id is unique, the key for every edit page will be unique to that row-user combination.

My problem is that I need to be able to get these secure query string keys from the server in some way that allows the JavaScript to redirect the user. I can't move the key generator client side because that opens up the possibility of users generating their own keys for pages they don't have permission to visit. And similarly I can't expose the generator in a web service.

Basically what this boils down to is I am stumped in finding a way to send data from the client to the server in order to generate a secure key and then redirect the user to the new page.

Not exactly sure if I am being 100% clear but I'll edit this as questions come in.

link|improve this question

what's wrong with a sessionId stored in a cookie? – Jacco Oct 4 '11 at 20:53
Can't really see how that's relevant to what I'm trying to do, can you explain? – rpf3 Oct 4 '11 at 21:01
Is it not possible to generate the secure key and send it along with the data when the AJAX call is made? – Rajeev Shenoy Oct 4 '11 at 21:08
Why don't you just generate all the keys for the given page when they make the request, and send them down with the original page? – Beska Oct 4 '11 at 21:09
I suppose I could do that but that means generating a lot more work than needed since you are only going to edit one at any given time which would increase the initial AJAX request time. I don't think it will be a huge time difference with small data sets though. – rpf3 Oct 4 '11 at 21:16
show 1 more comment
feedback

1 Answer

Your question is a little unclear, but PageMethods might work for this:

[WebMethod]
public static string GetSecureID()
{
    return "Secure";
}

clientRedirectSecure = function() {
    PageMethods.GetSecureID(onSuccess, onFailure);
} 
onSuccess = function(result) {
    window.location.href = "somepage.aspx?id=" + result;
} 
onFailure = function(error) {
    alert(error);
} 

Here's an article that discusses PageMethods:
http://blogs.microsoft.co.il/blogs/gilf/archive/2008/10/04/asp-net-ajax-pagemethods.aspx

link|improve this answer
thanks! I'll give this a shot – rpf3 Oct 4 '11 at 22:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.