blah blah blah is here! blah blah » Close

0
votes
1 answers

MVC2 Render Active Example

Hello all, Does anyone have a good site and/or books for learning MVC; I am looking for a way to have functionality of user controls in the MVC universe, and was told to look for the renderaction functionality. Can some point me to a ...

0
votes
1 answers

Declaring User Controls in .NET 2.0 on the backside...

Hello all, If I write the foloowing code: Button testButton = new Button(); testButton.Text = "HelloWorld"; PlaceHolder1.Controls.Add(testButton); I will get a Button on the page. Now If I ...

0
votes
1 answers

ADO.NET and describing a table in a DB...

Hello all, Is it possblie to use ADO.NET to get a listing of all the column names in a DB table? If it is possible how woud I do it? Thanks Pete

0
votes
1 answers

Coding a DTS package in C#...

Hello all, I was trying to find some resouces in coding a Microsoft Sql 2000 DTS pacakage in c#. I came accross some VB code examples and I was a little confused on how to convert some of the syntax. Here is the snippet: 'Declare the ob ...

0
votes
1 answers

SQL 2000 DTS Package Question...

Hi all, I have a DTS Package that has a stored proc with a parameter in it. I get the following package error: Package Error: Error Source: Microsoft OLE DB Provider for SQL Server Error Descripition: No value given for one or more re ...

0
votes
1 answers

ASP.NET and Events...

Hello all, Lets say I have a user control on a page named UC1 UC1 fires an event. On the parent page I want to catch that event and have a method run when the event is fored. On the parent page, what would I write? Pete

0
votes
1 answers

xml data and looping through children nodes

Hello all, I have an xlm document in memory that looks like this: Main Block item1 /item1 item2 /item2 item3 sub1 /sub1 sub2 /sub2 sub3 /sub3 /item3 /Block /Main ... Now i am having problems in gettin ...

0
votes
1 answers

dd

dd

0
votes
1 answers

DataGrid, ASP.NET, and Delete link clicked...

Hello all, If I have a datagrid, and have added the delete link to the datagrid, How do I find the actual row that has been clicked. It seems to be different when a select link is clicked. Any ideas would be helpful. Thank you. Pete

0
votes
1 answers

file being used by another resource...

Hello all, When I try to execute this line: FileStream input = new FileStream(fileName,FileMode.Open); I get this exception: System.IO.IOException: The process cannot access the file "C:\DOCUME~1\Pete\LOCALS~1\Temp\tmpBF.tmp" ...

0
votes
1 answers

finding a .net application form's existence

Hello all, Lets say that I have an application that is running, and at run time I create a form to display. Calling the show method of the form that I want to create(Lets call it: ABC). In another form how would I find IF the winform(ABC) ...

0
votes
1 answers

Moving files...

Hello all, I wanted to move files from one directory to another. How would I go about doing this? Pete

0
votes
1 answers

Windows Application and CSV files...

Hello all, I am writing a windows application, and I need to save the data that is in a datagrid as a CSV file. Any ideas? TIA. Pete

0
votes
1 answers

Making Code run faster...

Hello all, I have had a few heated discussion about code optimization in .NET. In our shop there are 2 ways of thinking. Group One states that all connections to the the database, and stored procedures should be done using the GUI tools i ...

0
votes
1 answers

Hard Returns in a label...

Hello all, I wanted to have a label that had a few hard returns(new lines) in it. I am build the text with a string builder object. Anyone have any ideas. Pete

Feedback