Forum: ASP.NET Dec 10th, 2007 |
| Replies: 2 Views: 5,323 You need to Serialize it I think...maybe use the server's session instead. |
Forum: ASP.NET Dec 10th, 2007 |
| Replies: 1 Views: 619 I am not sure where is this code used but I am guessing on some item data binding - try using specific Ids for your controls and instead of using:((TextBox)e.Item.Cells[2].Controls[0]).Text, which... |
Forum: ASP.NET Dec 10th, 2007 |
| Replies: 13 Views: 5,369 Not 100% sure what you are trying to do? Upload or Download a file. For download you need to replace the response stream with the file. This link is pretty good for downloading:
... |
Forum: ASP.NET Nov 30th, 2007 |
| Replies: 3 Views: 2,276 It's hard to say just based on what you said but one thing I did have a couple of times with VS2003 is that I lost controls event bindings after saving changes in the designer. Check the... |
Forum: ASP.NET Nov 30th, 2007 |
| Replies: 3 Views: 733 try this:
http://www.csharp-station.com/Tutorials/AdoDotNet/Lesson02.aspx |
Forum: ASP.NET Nov 30th, 2007 |
| Replies: 12 Views: 4,688 Hi,
displaying any listed data in a web page is a three steps process (basically):
Getting the data from a database\source
processing the data
displaying the data
When you got the data... |
Forum: ASP.NET Nov 30th, 2007 |
| Replies: 12 Views: 13,094 I was reading your problem and wanted to say that 'greeny' is right. However there is a problem with using a Console application and scheduler - many IT admins will not like that option. Running the... |
Forum: ASP.NET Nov 30th, 2007 |
| Replies: 12 Views: 4,688 mmm...why are the nested repeater not restricted? Are you not using the ItemDataBound event to populate it? When doing so you could control how many records are process could you not? |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 14 Views: 8,214 Send it to shaulf@yahoo.com |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 14 Views: 8,214 scm22ri - send me an email address I have a zip file ready... |
Forum: C# Nov 29th, 2007 |
| Replies: 8 Views: 2,063 A couple of comments:
1. send me the files to shaulf@yahoo.com and I will go over them...
2. Use try catch block
3. I use some abbreviation for the controls named like dd for dropdown...ddMain,... |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 5 Views: 4,971 I never had an inline grid editing form before (I try to separate editing to a different form) but you should try and dynamically add the validation control in the item data bound event (pay... |
Forum: C# Nov 29th, 2007 |
| Replies: 8 Views: 18,357 I would also use Table.AcceptChanges(); after the row was added... |
Forum: C# Nov 29th, 2007 |
| Replies: 5 Views: 3,002 |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 14 Views: 8,214 I created a link tracking application as part of a user tracking system just a month or so ago. What I used was an asmx request handler - when the links are created I added a javascript call to the... |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 5 Views: 10,984 There are two places the permissions need to fixed at for upload to work:
1. IIS on the folder you want to upload you need to check the allow write check box
2. right click the actual folder in... |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 6 Views: 1,166 There are two challenges with a forum application:
1. storing the data - forums are tree like data structure with an N levels of node\leafs to store them in the database look for examples on... |
Forum: ASP.NET Nov 29th, 2007 |
| Replies: 12 Views: 4,688 I read through your question and could not quit understand the problem. How are you getting the data? from a database? why not restrict the number of records there? You could filter the dataset using... |