Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
508 views

Simple Hackable URL implementation for ASP.NET (3.5)

I'm looking for a good sample project, or web site reference, which gives a simple easy to understand overview of URL Rewriting and making Hackable URLs. I've read a good amount about the concept, ...
2
votes
9answers
511 views

How would you design a hackable url

Imagine you had a group of product categories organized in a nice tree hierarchy and you wanted to provide hackable urls to browse these. You could do something like this ...
1
vote
3answers
6k views

What's cleanest, shortest Javascript to submit a URL the user is at to another process via URL?

Like the Delicious submission bookmarklet, I'd like to have some standard Javascript I can use to submit any visited URL to a 3rd party site when that's possible by URL. Suggestions? For example, ...
0
votes
1answer
77 views

Is a Modification Number to mask an Id in a query string necessary?

My coworker is insisting that the use of a global modification number to mask query string IDs is a good idea. public static readonly int ModificationNumber = 9081234; And Elsewhere: _addressID = ...