Forum: ASP.NET Jan 7th, 2009 |
| Replies: 1 Views: 601 That's a good question. I wonder... given that it would run on different sessions how that would affect anything. |
Forum: ASP.NET Jan 5th, 2009 |
| Replies: 2 Views: 1,675 The problem is exactly what the error says. The compiler cannot find Microsoft.Web.UI.WebControls in your project. I'm assuming this is the library for IE controls because i don't recognize it as... |
Forum: ASP.NET Jan 3rd, 2009 |
| Replies: 2 Views: 403 what problems are you having? |
Forum: ASP.NET Jan 3rd, 2009 |
| Replies: 3 Views: 436 Absolutely. If you can give the sky to your customers, then go for it :) |
Forum: ASP.NET Jan 2nd, 2009 |
| Replies: 1 Views: 406 What do you mean by 'table tools'? Are you referring to the table control of asp.net framework? |
Forum: ASP.NET Jan 2nd, 2009 |
| Replies: 6 Views: 1,361 create your Excel and simply stream it through the browser as a download. |
Forum: ASP.NET Jan 2nd, 2009 |
| Replies: 4 Views: 870 Alright, that cleans things up a bit. The proper way to do this would be to create a static method GetSessionInstance() to return an instance of ClassName from session cache. This behavior is not... |
Forum: ASP.NET Jan 1st, 2009 |
| Replies: 4 Views: 870 Check out 'class factory' design pattern. You might find it useful for this type of problem.
Also, what does GetSessionObject() do? Does it initialize a private instance of that session object in... |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 2 Views: 771 A rule of thumb is, if you have an Access app that does anything beyond simple data entry - use SQL Server, Oracle or something similar.
Here is a couple of things you could do:
1. If both DBs... |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 2 Views: 740 Check this out:
This may be a security limitation in IE. |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 5 Views: 1,657 When you created each user did you approve their account? Make sure each user is in the 'approved' status, otherwise they won't validate. |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 8 Views: 1,180 Open your web.config. Look at the <authentication> tag and check the mode. Is it set to "Forms"? If so, change it to "Windows". This *should* work. Note, however, that anybody running that page will... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 8 Views: 1,180 Okay, i just saw a reference to Update Panel in your page code, but your upload control is declared outside of it. Use breakpoints and run your page in debug mode. Set break points inside of the... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 2 Views: 404 It converts an integer value in column 0 to a 32 bit integer and adds 1 to it. Then it converts it to a string in order to assign it to a text box. If column 0 doesn't have a value it assigns a 1 to... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 8 Views: 1,180 FileUploader control does not work in the upload panel. In other words, it isn't Ajax compatible control. You need to do a regular postback through a trigger. It's a security constraint in the design... |
Forum: ASP.NET Dec 25th, 2008 |
| Replies: 1 Views: 841 Use System.Data.Common.DbCommand instead. |
Forum: ASP.NET Dec 25th, 2008 |
| Replies: 2 Views: 471 The easiest way is encapsulate all of the VB6 logic into DLLs and then load it up in the .NET project. The platform will migrate your VB6 code into the .NET platform using its built-in COM... |
Forum: ASP.NET Dec 24th, 2008 |
| Replies: 0 Views: 609 I just spent an hour trying to figure out why i cannot change the CssClass property of <asp:TextBox> Whatever i enter in the property defaults to class = "textbox" when i render the page. What's... |