I want to pass a few variables to another page. Currently I'm using response.redirect and passing the variables in the url. I'm not really interested in using Session Variables. Is there a way to pass hidden variables in .NET to a completely different form?
...
Is there a way to give a parameter to a method the same name as an instance variable in Objective-C without hiding that variable?
For instance,
- (void)doSomething:(id)object
{
self.object = object;
}
The code above gives the warning "local declaration of 'object' hides instance variable."
The obvious solution is to name the para...