| Thread | Last Post | Replies |
|
| dataadapter.fill slow | 26 Jun 2006 12:47 GMT | 2 |
When i try to fill, it takes about 25 seconds, and the sql sentence in the analyzer only takes 1 sec. The sentence returns 60 rows and 32 columns sda.Fill(ds,"alojamientos");
|
| Masterpages and FindControl | 26 Jun 2006 12:45 GMT | 2 |
I'm slowly going mad with Masterpages and the FindControl. After a couple days of figuring out how to use the FindControl command from within a Masterpage, I still can't explain why this code does not function. As you can see if you compile it with 2005, clicking
|
| Why can't I POST to this page with HttpWebRequest? | 26 Jun 2006 12:43 GMT | 1 |
http://www.dcor.state.ga.us/GDC/OffenderQuery/jsp/OffQryForm.jsp?Institution=vDi sclaimer=True Every time I try it just kicks back the same HTML you'd find from the link above rather than a page displaying a particular individuals records. I've tried some generic cookie code to no ...
|
| How comes this crypto method does not work (Rijndael) | 26 Jun 2006 10:58 GMT | 5 |
Anybody has any idea why this simple thing is not working? I pass a text file as input to encrypt it, then pass the encrypted version to the same function and get some garbled data not at all resembling the input file. Rijndael rijndaelAlg = Rijndael.Create();
|
| C# app update mechanism | 26 Jun 2006 10:51 GMT | 1 |
We are building an C# .net app that will be installed on company workstations. The app will consist of a number of assemblies. Does anyone know if there exist some generic
|
| Impersonate and LogonUser() | 26 Jun 2006 07:51 GMT | 9 |
Hi NG ! I used the examples on the internet to create a Impersonate class which allows me to log on as another user. After logged on as the new user I could access files on a remote computer, which is in the same domain.
|
| How to covert to UTF8 | 26 Jun 2006 07:22 GMT | 3 |
I use a fileUpload of ASP.NET to read a csv file from client into a Strem like: Stream myStream = FileUpload1.FileContent; But the file from Client if of CharSet BIG5.
|
| How do i escape { and } in a format string | 26 Jun 2006 06:48 GMT | 3 |
when creating JS for client side and I use StringBuilder.AppendFormat to add some args to a dynamic string. I can't use the { or } to open and close JS methods on the .AppendFormat line though i can do it on .Append How do i escape { and }
|
| How to copy all files under a folder to another folder | 26 Jun 2006 05:16 GMT | 6 |
I want to copy all files under a folder to another folder. If I use File.Copy(sourceFileName, destFileName, overwrite), it must specify all files name in the source and destionation. How can I copy all files in a directoy to another directory?
|
| C# "class reserve" word used as a class name? | 26 Jun 2006 05:00 GMT | 3 |
I have a couple of questions and I am not able to find them any where on internet. 1. We are using a third party class library which exposes a class with the name of "class".
|
| Float parsing | 26 Jun 2006 04:18 GMT | 2 |
The following instruction: float myFloat = float.Parse("30.900665"); Assigns a value to myFloat of "30.9006653", how can this be? Where did the extra 3 came from?
|
| How to Convert Office Docs to PDF using C# | 26 Jun 2006 02:46 GMT | 3 |
How to convert Office Docs to PDF format using C# on the fly in memory Does Office 12 API support that? Thanks, Sa
|
| Processing every control in a form | 26 Jun 2006 00:08 GMT | 4 |
I need to process every control in a window form application. I was able to do this in Visual Basic using "FOR EACH". Is this not possible to do in C#. I tried "foreach" but was not able to make it work. A snipit would be greatly appreciated.
|
| AcceptButton | 25 Jun 2006 23:37 GMT | 1 |
how do i create an AcceptButton in c# user presses enter on textbox = button1.click something like AcceptButton = button1
|
| MaskedTextBox Issues 2.0 | 25 Jun 2006 19:25 GMT | 1 |
If I bind an object with a DateTime field to a MaskTextBox, using the short date mask /00/00/0000/, and the date is something like 01/01/2006 the MaskTextBox.Text displays 11/20/06. It removes the leading zeros of the day or month. The same is true when you enter a date like ...
|