Question : ASP.NET submit form to another page

I am converting my site and in the earlier edition i had an html page that submitted a form to another page

so the other page handles the form and validations, etc...

now i am making the site which is generated from the database, and the difference is that now the pages are .aspx pages...

so can i have the .aspx pages submit forms to another page.. ?

thanks.

Answer : ASP.NET submit form to another page

Well it's       up to you shanemay, but another way to do it would be to overload a method for each of the standard collection classes if you think it's worth it. Other options would include using reflection. It might be better to do the following to remove ambiguity:

1:
2:
3:
4:
5:
   private static <T> List<T> intersection(Collection<T> c1, Collection<T> c2) {
	List<T> result = new ArrayList<T>(c1);
        result.retainAll(c2);
        return result;
   }
Random Solutions  
 
programming4us programming4us