Forum: ASP.NET Apr 3rd, 2008 |
| Replies: 6 Views: 4,018 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,165 you already made a thread about this... |
Forum: ASP.NET Apr 2nd, 2008 |
| Replies: 6 Views: 4,018 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,213 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: Database Design Mar 28th, 2008 |
| Replies: 2 Views: 796 Use the first scenario.
Keep all the events in one table and all the categories in one table.
It will be faster and easier to work with. |
Forum: ASP.NET Mar 10th, 2008 |
| Replies: 2 Views: 1,230 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,338 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: C# Oct 3rd, 2006 |
| Replies: 3 Views: 11,477 try storing it in your context.session.
ive always prefered to just hit the database again for each page.
just grab only enough each query to fill one page.
EDIT: sorry i just realized, that you... |
Forum: ASP.NET Jul 17th, 2006 |
| Replies: 3 Views: 10,921 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... |
Forum: C# Jul 7th, 2006 |
| Replies: 3 Views: 4,682 You should just beable to bring the label control to the front. which i think does nothing more then changes the order of the controls being added to the form, in a way which the label should be... |
Forum: C# Apr 19th, 2006 |
| Replies: 3 Views: 9,319 i didnt really read your code so im not sure what your doing with the data. but anyways im sure all you need is ms office installed on the machine for it to work.
if all you are doing is reading... |
Forum: C# Mar 7th, 2006 |
| Replies: 9 Views: 6,366 do this with sql and it will save you a lot of trouble, here is a quick example assuming the table has a column called price and one called quantity
SELECT Price, Quantity, Price * Quantity AS... |
Forum: C# Dec 9th, 2005 |
| Replies: 5 Views: 8,155 static void Main(string[] args)
{
}
make your Main look like this and "args" is a string array of all the args passed |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,281 if my code didnt work, then you prly have access errors, because this worded perfectly for me.
oh well that code was originally from ms site. anyways what formay are you saving it in? |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,281 i dont know why i am giving you such simple code but here
for(int i = 0; i <= listBox1.Items.Count -1; i++)
{
SaveThis = listBox1.Items[i];
}
it could also use foreach but i... |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,281 well if you havent figured it out yet its because you are trying to use a selection in list before a selection can even be made.
in order to use the selection you need to click on it.
i fixed... |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,281 are you trying to create a file that outlook can read? or is this copying the contacts for a different use? |
Forum: C# Sep 29th, 2005 |
| Replies: 4 Views: 3,593 they need 2.0 unless you setup your project to develop only in 1.1 |
Forum: C# Sep 21st, 2005 |
| Replies: 26 Views: 7,194 it looks like this thread went off topic, do you still need help printing? |
Forum: C# Sep 7th, 2005 |
| Replies: 2 Views: 2,767 im not sure why it would say its missing.
the MouseMoveEventArgs is a seperate class so makesure its not in your main forms class, that would be one guess why its not working, cause it needs the... |