| Thread | Last Post | Replies |
|
| Membership class api | 25 Aug 2006 05:14 GMT | 2 |
I am using the Membership control in my asp.net application. When a person registers, I set the account to not active. CreateUserWizard1.Enabled = false; Then I send them an email with a link for them to click on to activate their
|
| Custom Surrogate | 25 Aug 2006 03:41 GMT | 9 |
I need to copy a class which derives from CollectionBase but I don't want to include the items in the collection. I only want to copy the fields/properties. I was thinking of creating a Surrogate for this but I'm not too sure how
|
| Modify value in app.config | 25 Aug 2006 01:43 GMT | 5 |
I need to modify a value in the app.config file with this code: System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); string key = "Path";
|
| Reference data in selected rows of dataViewGrid | 25 Aug 2006 01:35 GMT | 1 |
I have a dataViewgrid in my project in which the user will select multiple rows. The will click a button and my program will perform some operation on the selected records (using the ID column value for each of the selected rows). My question is, how do I loop through the ...
|
| How to call DLL developed in C# in VS 2005 from C# in VS 2003 | 24 Aug 2006 23:46 GMT | 1 |
I have lots of C# applications developed in Visual Studio 2003 which I have not migrated into VS 2005. Now I need to call a C# DLL developed in VS 2005 from these C# applications of VS 2003.
|
| Abstract Factory and other patterns | 24 Aug 2006 23:31 GMT | 5 |
I am writing a data access layer that would allow connecting to various database systems, such as SqlServer, MySQL, Oracle, Ms Access, etc. Since I also would like to use providers specific to each database system's type, I created a main interface, called IConnectionFactory, ...
|
| stream/pdf/email | 24 Aug 2006 23:13 GMT | 5 |
In a web app I am making, I use a class which has a method which generates a pdf from some xml data. The method accepts a "stream" parameter which I set to the http-output-stream, and thereby the pdf is sent automatically to the user's browser.
|
| Security Issue | 24 Aug 2006 22:37 GMT | 1 |
Good afternoon, I have a question to pose with you. I am currently in the middle of a project re-write wherein I have an ASP.NET page that reads in a pair of files off of the server, parses through the data, and outputs another
|
| using GAC | 24 Aug 2006 22:27 GMT | 4 |
I have read some info on the WWW about GAC It says the following. "If you want to use an assembly from the GAC, you should drop your assemblies into a local folder,
|
| Validate xml file | 24 Aug 2006 22:26 GMT | 3 |
Can I validate an XmlDocument against an xsd file before it is saved to a file? Any sample code?
|
| NTLM Authentication | 24 Aug 2006 22:26 GMT | 1 |
I'm building a .NET C# Windows Forms Application, and I am facing authentication issues. The application makes requests to an http web server using the HttpWebRequest class. But it doesn't pass through NTLM authentication
|
| Quick regex question | 24 Aug 2006 21:48 GMT | 5 |
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers
|
| How to find selected row count in datagrid view control | 24 Aug 2006 21:39 GMT | 1 |
I found the following code on the MS website: and tried it, but it did not work: Int32 selectedRowCount = dataGridView1.Rows.GetRowCount(DataGridViewElementStates.Selected);
|
| Object Question | 24 Aug 2006 21:37 GMT | 2 |
I need to loop through a collection of objects (see below) based on the field vendorName. I basically need to sort by vendorID and then pull the product info from each vendor. There are multiple products per vendor. Any ideas?
|
| Exporting to Excel in a .NET application | 24 Aug 2006 21:29 GMT | 5 |
Good afternoon, I have an asp.net project wherein I am trying to export data into excel. I have that working, however, I am typically dealing with a large volume of data when I do this. Can anyone suggest a better
|