Forum: ASP.NET Apr 3rd, 2008 |
| Replies: 6 Views: 3,864 the web.config needs to be at the root of your old site.
looks like this fully written out.
This can be entered as many times as you need, im not sure if there is an easier way to write it though.... |
Forum: ASP.NET Apr 2nd, 2008 |
| Replies: 2 Views: 1,135 you already made a thread about this... |
Forum: ASP.NET Apr 2nd, 2008 |
| Replies: 6 Views: 3,864 You should set this up in IIS using an http redirect.
You just need to have the file highlighted then in features view select http redirect then specify the new address in the box and check the two... |
Forum: ASP.NET Apr 1st, 2008 |
| Replies: 10 Views: 4,100 are you trying to upload this image from every visitor of the page or just you?
I dont believe it is possible to upload a file from a visitor, because then nothing would stop you from taking any... |
Forum: ASP.NET Mar 10th, 2008 |
| Replies: 2 Views: 1,190 You dont need a where for an insert because your not filtering out data, its a new record to the table. only an update, select or delete statements need a where clause.
You probably meant to do ... |
Forum: ASP.NET Oct 23rd, 2007 |
| Replies: 5 Views: 10,045 Page.IsPostBack Is used to check if the user posted back to the page. Meaning they clicked a button or changed a field in the form that causes it to post back to itself.
Putting Not usually is used... |
Forum: ASP.NET Jul 17th, 2006 |
| Replies: 3 Views: 10,757 for the onClientClick, if confirm returns a bool try using this for the code
onclick="return confirm('Are you sure you want to delete this item?')"
you can also put that in the... |