No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Experienced web developer. My main development tools are Visual Studio and SQL Server.
14 Posted Topics
Re: I would also use Table.AcceptChanges(); after the row was added... | |
Re: [QUOTE=SheSaidImaPregy;480442]anyone? this will help tons.[/QUOTE] 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 the "DefaultView" row filter - [URL="http://msdn2.microsoft.com/en-us/library/system.data.dataview.rowfilter(VS.71).aspx"]http://msdn2.microsoft.com/en-us/library/system.data.dataview.rowfilter(VS.71).aspx[/URL] . Send me your … | |
Re: 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 scheduler requires and administrator's user and if that user changes his password or is … | |
Re: [QUOTE=scm22ri;480560]Hi Everyone, I'm new to this forum. I hope to learn a lot here. My first question is this, in affiliate marketing, how does one use the postback url feature in order to track affiliate sales ? Meaning if someone searches "Mobile Phones" & goes to my site and they … | |
Re: 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: [URL="http://www.xefteri.com/articles/show.cfm?id=8"]http://www.xefteri.com/articles/show.cfm?id=8[/URL] Use lots of try catch blocks... | |
Re: You need to Serialize it I think...maybe use the server's session instead. | |
Re: 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 fails on every structure change use - TextBox txtImage = e.Item.FindControl("txtImage") as TextBox; | |
Re: 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 attention to the row type (edit)). You could also just check the entry after the … | |
Re: 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 Initialization event and make sure your grid is still connected to the events... | |
Re: try this: [url]http://www.csharp-station.com/Tutorials/AdoDotNet/Lesson02.aspx[/url] | |
Re: A couple of comments: 1. send me the files to [email]shaulf@yahoo.com[/email] 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, ddSecond etc'. 4. I would place the prices in the web.config - prices tend to … | |
Re: [QUOTE=ab_dc;480842]hello all, I'm new here I try to follow everything in Google search to resolve my problem but nothing done I'm trying to upload file in asp.net the same error of " Access to the path 'c:\inetpub\wwwroot\aa' is denied. " repeated every time I try to upload so how to … | |
Re: [QUOTE=anirban1234567;480023]can anybody tell how to make discussion forum in asp.net... I need it immediately...[/QUOTE] 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 storing … |
The End.