| Thread | Last Post | Replies |
|
| use ViewState | 22 Aug 2006 12:36 GMT | 3 |
here is a case: a page has two textboxs and a button, when Page_Load, the two textboxs was set a value. and when user click the button, if the values of the two textboxs was not changed, it will show the alert "there is
|
| ListenSocket | 22 Aug 2006 12:30 GMT | 1 |
Is it stupid to close the ListenSocket after the 'ListenSocket.Accept' like below if only one connection is alloved? MySocket = ListenSocket.Accept(); Thanks,
|
| passing javascript value to itemtemplate textbox | 22 Aug 2006 12:28 GMT | 1 |
How do i pass a javascript value to datagrid itemtemplate textbox using javascript. Kalaivanan
|
| socket maxconnections? | 22 Aug 2006 12:03 GMT | 4 |
As a newbie to socket communication I would like to know more about 'SocketOptionName.MaxConnections'. Everywhere I look for examples on using socket I see the statement: listenSocket.Listen((int)SocketOptionName.MaxConnections);
|
| about enum | 22 Aug 2006 09:58 GMT | 1 |
If you have this enum test declaration can see get the number of items in this enum. In this case it's 6. Can I use some suitable metods or some statement to get this 6 in some way.
|
| ASP.NET quicklinks menu | 22 Aug 2006 09:47 GMT | 1 |
hiya, on the http://www.microsoft.com/ webpage in the top right corner there is link that reads 'quick links'. hover over it and you will see a popup menu. such a control would be incredibly useful in my situation. i have tried everything to make something similar using an asp ...
|
| How to making a read-only array reference? | 22 Aug 2006 08:57 GMT | 7 |
Is there any way of creating a read only reference to an array? My class includes a private array of bytes with a Property to access it. However, I do not want users to use the returned reference to modify the array; modifications are only allowed through the property, which
|
| C# code convention | 22 Aug 2006 08:32 GMT | 9 |
I was wondering if someone could provide me with a C# code convention document. I've tried to find some using "Google", but to no avail. I did find plenty of Java Code conventions, which is pretty useful for C# too, but I would really like a "dedicated" C# convention.
|
| File.OpenRead | 22 Aug 2006 06:30 GMT | 3 |
I read a txt file with html. The openread event removes all the html tags. Any ideas...? public static string fileOpen(string fileName) {
|
| Generic Parameter constraint - new() | 22 Aug 2006 05:59 GMT | 1 |
So, we can use the new() constraint to specify that a given type must have a parameterless constructor. Why can't we say something like new(string) to specify that it must have a parameter taking a single string? If we can do one, why not the other?
|
| How do you clean the Recent Projects listbox | 22 Aug 2006 05:58 GMT | 2 |
How do you clean the Recent Projects listbox?
|
| Delegates, abstract classes and interfaces | 22 Aug 2006 04:41 GMT | 4 |
Consider the following code snipet: delegate void SomeDelegate(ICollection collection); void SomeDispatch() { ArrayList al = new ArrayList();
|
| Generics passing Class type | 22 Aug 2006 03:40 GMT | 3 |
I'm currently creating a custom column in a DataGridView. I'm wondering if Generics can be used to solve an issue I'm seeing. When creating the editing control for the column cell I have the code: class MyEditingControl : MyTextBox, IDataGridViewEditingControl
|
| RAD? Tool | 22 Aug 2006 02:13 GMT | 1 |
Does anybody know of a RAD SQL database tool for C# 2005 and SQL 2005? I guess I am sort of wanting the development speed you get with say Access Front End / SQL Back End but still have the advantages of C#. Also better yet would be something that would assist with building but ...
|
| About Dynamic Code Generation | 22 Aug 2006 00:56 GMT | 2 |
I am facing a problem in dynamic code generation at run time, the problem occurs when the dynmaic code use global data exist within the original application. Lets say that my application is called "Dynamic Code", so the name space in
|