Shawn, Thanks for recommending aspalliance. I checked it out but it doesn't seem to do what I need. Or maybe it does and I jsut dont know it. I'm looking for...
Hi Tyler, ASP is for your interface and not your data. So the way you structure your data has no link to ASP. You would have to build your html display the way...
Hello Everyone: I am using Visual Studio.Net to do some HTML page creations. One thing that REALLY bothers me is when you switch from Desing View to HTML view...
I have a huge number of records in a database as well as a long list of 'bad' words. Before displaying any record, I want to check the list of words and ensure...
Hi all, I'm creating ASP application to write into a tab-delimited file to be read by Excel. This is the requirement, don't ask me why :-) The desired output...
There are some facilities you can use that spring to mind. But first, a comment ... You are going to have to parse the records to at least some extent...
I fooled around with csv for a banking program, you might wanna look into the chr() function, this will pump out the ansi character You can find tables...
Niels Bieze
nrbieze@...
Jul 8, 2005 11:42 am
10788
Sorry typo, should be chr(039) Sort!...
Niels Bieze
nrbieze@...
Jul 8, 2005 11:43 am
10789
I remember running into the same issue before. If memory serves me correctly: I think I just concatenated a space before the number. This has been over 2...
I have an .asp website and I cannot add more than one form to the site with out getting errors. All that I would like to add is simple drop down menus with a...
Just a thought... Is it possible to "format" the excel column? Lisa Hi all, I'm creating ASP application to write into a tab-delimited file to be read by...
This isn't really the right way to do this... the processing can be horrendous. You need to do this as a database side process. Preferrably on load. Set a...
I assume you're thinking about applying "text" formatting to the cell - after the import? That won't help, because Excel actually drops the leading zeros when...
Yes. A very good point. Actually, to move further. The question that ran through my mind at the time was "why ask this on an ASP group, it's an off-line...
Try checking the "names" you have given to the forms. They may be the same, or you may have the forms overlapping. Regards, Maxwell Sabwa www.crbafrica.com ......
This is strange... I simply access a database, check that the company, username, and password all exist, and that they are associated with other. If the user...
Mark - are you able to test on a live server? that would help point if the issue if your IIS or the code. moshe ... From: active-server-pages@yahoogroups.com ...
Ok, 10 minutes after posting I manage to fix it! In desperation, convinced my code was correct, I added ACTION='default.asp' to the FORM tag. It worked!...
Thanks for your replies. As it happens, on this particular project, the information is in an Access document. As the data is already there, it means that I can...
Hi Mark, ... It's not a bug, it's a feature! ;) Seriously though, POSTing to a directory isn't allowed for security reasons, it's always necessary to POST to...
Are you are you're not talking about server-side forms on asp.net (.aspx pages)? <form runat="server"> If so you can only have one. If that isn't what you're...
Hi, I'm coding using VS.Net 2003, and I've got a datagrid that lists customers and the time spent working for each customer. When you mouse over the time...
When using integrated authentication in IIS6 and IIS6 regular mode (not IIS5 downgraded mode), what user account and permissions are needed for a folder that...
this doesnt seem like a permission issue but like a connection issue. in which mode have you opened the recset? Ilyas ... From: "pcjr10" <pcjr10@...> To:...
I'm trying to display my staff members by department, not have to repeat the department name in the table. Currently, the data appears as follows Dept1 staff...
... I can't quite remember, but doesn't calling a field from a recordset "wipe" that field for that row, i.e. you can only call a field once per row? Probably...
THanks manzo.. I'll look into that. I've only been doing this for a short time and am always looking for ways to clean up the code and make it more efficient....