|
|
|
Output to Excel 2007
Fri, 22 Aug 2008 09:39:01 -0700
The following code used to outputs to Excel 2003 fine. Do I need to change it
to output to Excel 2007?
<%
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment; filename=List.xls"
%>
In addition, it pops a small File Download - Security Warning window show ...
|
Upgrading to ASP.Net
Fri, 22 Aug 2008 07:54:01 -0700
I know I am quite behind the times but I need to finally upgrade our website
from classic ASP 3.0 to ASP.Net.
I plan on creating apsx pages with the same names as the old asp pages.
Then remove all of the code from the old asp page with the exception of a
Response.redirect to the comparably named apsx pa ...
|
Re: Payment Gateway in asp
Fri, 22 Aug 2008 08:47:09 -0500
<vinodkus@gmail.com> wrote:
> Please tell me how to do payment gateway in asp .
> please provide me coding or refer me any site so that I can
> understood it easily. I have to do it with ICICI bank. I have
> been provided a link for it but i dont know how to implent it.
There are a small list of payment gatew ...
|
problem with javascript in asp not rounding up..
Fri, 22 Aug 2008 03:32:10 -0700
Hi All,
I have a neat little script that calculates price based on quantity without
refreshing the page.. the script is -
< script type="text/javascript">
function OpenWin(url)
{
window.open(url,'win','scrollbars=1,status=0,resizable=0,width=200,height=265');
}
function btnCalculate_onclick()
...
|
Internacionalization
Thu, 21 Aug 2008 17:21:34 -0300
What is the best approach? Using DB wich stores the translation of the
variable used on site for each language?
LANGUAGE_CODE, VARIABLE, TRANSLATION
1,'CustomerWord','Customer'
2,'CustomerWord','Cliente' -> 'BR Portuguese
Thanks
...
|
how to retrieve CheckBox value using GET Method ?
Fri, 22 Aug 2008 00:42:17 +0800
If I have
<form action="process.asp" method="get" name="form1">
...
...
<input TYPE=checkbox name=sports VALUE=Cricket>
<input TYPE=checkbox name=sports VALUE=Swimming>
<input TYPE=checkbox name=sports VALUE=Football>
</form>
If I check all, when submit, I will get in URL string
http://....? ...
|
Please Help Advanse Search, two parts are working, the 3rd to connect.
Thu, 21 Aug 2008 13:27:18 GMT
Hi Everyone,
I got two parts of my advance search to work, I am running out of Logic to
connect the third. My mind is in swing! Pleaseeeeeeeee Help me.
I have 3 Fiels to search, the First two works, thats:
1. Category to search from the (Drop down name: ASPDBCatSearch) is working
with the Input Text Box ...
|
|
|
Connect to Database Function
Wed, 20 Aug 2008 07:38:58 -0700 (PDT)
Hello,
I want to create a useful function or sub whichever works great for
database connection to avoid typing same code all over. Earlier I was
using include file for opening and closing adoCon object and
connection. Now I really want to use a function to do it.
Can one recommend a good example?
I have this ...
|
Info on SOA, TOGAF, Virtualisation, SaaS etc.
Tue, 19 Aug 2008 23:40:53 -0700 (PDT)
Hi all,
I recently moved south to Bangalore and I am working for a large
software integrator. My project team is working on a project that
applies TOGAF to SOA. Are you able to point me to online and offline
resources/trainings that can help our team get up to speed with SOA
features and building blocks, th ...
|
CreateTextFile in secure FTP folder
Tue, 19 Aug 2008 15:55:01 -0700
Hello
I get permission denied at line 4 in the following ASP Script
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("test.txt",true)
response.write "here"
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>
I hav ...
|
|
|