| Thread | Last Post | Replies |
|
| Custom Control | 28 Dec 2006 19:46 GMT | 3 |
I have been creating custom controls based on Asp.Net 2.0 controls using CreateChildControls. When I look at the HTML source it looks like Asp.Net wraps all the child controls with a span tag.
|
| ASP.Net 2.0 - assembly info? | 28 Dec 2006 19:43 GMT | 4 |
Having used to be able to specify the version numbers for my applications I am a bit of a loss with regards to what to do now...from what I've read (skimmed through to be honest) on the net it would seem that assembly.info is no more and that .net handles all of the version itself.. ...
|
| Coding correct/incorrect? | 28 Dec 2006 19:31 GMT | 2 |
I have my own "way" I guess of coding, like we all do, whilst I try to maintain consistency throughout my own applications I often wonder whether there are better ways of doing things...since I started using Visual Studio 2005 I've been quite pleased with the messages it gives ...
|
| custom pages | 28 Dec 2006 16:48 GMT | 1 |
I'm just about to start building an app that will allow users to select a number of items using check boxes, i then want to take the user through a sequence of pages based on their selected criteria. For example, the options could be A,B,C,D and the user selects A,C,D - I
|
| Custom Validator | 28 Dec 2006 16:38 GMT | 1 |
Hi group, i'm trying to add a customvalidator control to a custom web control. The problem is i'm getting a "Unable to find control id..." exception. Here is the code: public class CuitTextBox : WebControl
|
| Can I install VS2003 after installing 2005? | 28 Dec 2006 16:27 GMT | 2 |
I may have a need to install Visual Studio 2003 but I've already installed 2005. Will I have problems installing 2003 now?
|
| how to use Click event with programmatically defined button? | 28 Dec 2006 16:00 GMT | 4 |
I'm working with VWD and i defined programmatically a button (in code-behind) with an ID. So I expect to see beside "Page Events" and "Form1" my button "b1" in order to use the Click event. But it doesnt' appear. After saving the code-behind file, i only see "Page Events" and ...
|
| Exclude files and general search | 28 Dec 2006 15:39 GMT | 1 |
In VS 2005 if you exclude files from a project, it actually renames the file to filename.exclude. In previous versions, it just left the file alone but excluded it. If you have a very large ASP.net web site you may have thousands of images. In our case we have millions because ...
|
| Cross: Access speed | 28 Dec 2006 15:23 GMT | 24 |
Can I use access for big database (cca 10-30 MB, cca 10-30k lines in database). It will be asp.net 2.0 aplication and very fast server. Mostly simple transactions (like SELECT * From Books Where Name like 'SomeName%'). Can it be problem if I have 10 000 unique visitors per day? I ...
|
| <label> element in ASP.NET | 28 Dec 2006 15:10 GMT | 7 |
How can you correctly use the <label> element in asp.net? does the label custom control corelate to this tag correctly in the same way in that if you click it it will select the tied element? thanks
|
| GridView not updating in asp.net 2.0 | 28 Dec 2006 15:03 GMT | 1 |
I'm stuck on something.I have a little page that I want to update a table in my sql database so I thought a GridView would be the quickest way to implement this (wrong!). The grid displays the data fine but the updates aren't working. After looking at SQL Profiler I can see that it
|
| control responding for clicking keys | 28 Dec 2006 14:55 GMT | 1 |
I'm looking for a solution for my project. All I want is to have a textbox control which can respond for pressing keys. The other control will be dropdownlist which will be retrieving data from database with "where" condition based on what is typed in the first control.
|
| Retrieve SessionID in Global asax | 28 Dec 2006 12:17 GMT | 11 |
Does anyone know how to retrieve the current sessionId in Global.asax.ApplicationError? /k
|
| Passing data from Global.asax to a generic errorpage. | 28 Dec 2006 11:33 GMT | 3 |
I have a generic errorhandler in global.asax. (in Application_Error) I need to transfer an error string from global asax to a generic error page. So I try: this code with the thought of picking up the string from session
|
| Control in Master Page.. "Name lblStatus is not declared" | 28 Dec 2006 11:19 GMT | 2 |
[ASP.Net, VS2005] I have a label control in my master page like this: <asp:Label ID=lblStatusMessage runat="server"></asp:Label> When I reference the control in my code-behind I get this error "Name 'lblStatusMessage' is not declared"
|