|
Is this a caching issue on your IE browser?
|
|
|
|
|
yes.The last created file stayed.The new file displayed after refresh the browser.
|
|
|
|
|
In frontpage 2001, Inspite my ASP is enabled, the 'send to database' button is still not available. Why?
|
|
|
|
|
I have a legacy classic ASP website with lots of classic AJAX (many ASP files specially made for processing AJAX requests).
We are slowly migrating the website to ASP.NET 2.0 and developing under Visual Web Developer 2005/2008. I notice VWD doesn't debug ASP files. Since we are still migrating a very large website, we are mixing ASP.NET code with classic ASP (ASP.NET pages making AJAX calls to classic ASP pages).
In Visual Studio 2003.NET it supported full server-side debugging in all ASP pages. Now, how can I debug the AJAX classic ASP pages? I tried running Visual Studio 2003.NET and attaching it as a debugger to Internet Explorer, but no breakpoints were stopped at.
Please can someone help. How can we debug classic ASP pages during AJAX calls?
|
|
|
|
|
You cannot debug the classis ASP pages.
|
|
|
|
|
Hi..
I have one requirement for knowing IP Address of client maching browsing my website(asp.net/c#) -->2.0
I have code as follows
string ipAddress;
ipAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipAddress == "" || ipAddress == null)
ipAddress = Request.ServerVariables["REMOTE_ADDR"];
This gives me value:127.0.0.1
but actual IP is : 192.168.1.34
Can u suggest me the amendments..
thanks
Hemant Thaker
By:
Hemant Thaker
|
|
|
|
|
Is this[^] what you're looking for? (Courtesy of Luc Pattyn[^])
If at first you don't succeed, you're not Chuck Norris.
|
|
|
|
|
Awesome.......
Finally I got the solution
Thanks a lot
By:
Hemant Thaker
|
|
|
|
|
Hello,
I am working on a shopping cart which can be used to set up a recurring payment, if user opt for.
A user can purchase multiple items having varying prices. He can choose recurring payment option for each item. According to the functionality requirements, some type of items can be set only for monthly recurring payment, on the other side some of them can only be set for yearly recurring payment.
For example, if user wants to set recurring payment for item 'A', he can go for 2,3,4,....12 months. But when he choose item 'B', he is only allowed to choose recurring payment for 2,3,4,.....10 years.
Currently, I am sending an independent recurring payment request to paypal for each item selected by user so that the varying needs for recurrent payment can be handled.
Sending individual recurring payment requests for each item selected is obviously not a good idea. User has to wait for a long time to complete all the transactions.
I have gone through the API's provided by PayPal & authorize.net and also googled for the same, but did not come up with any idea to setup recurring payment for multiple items with varying amount of time in a single request.
Is is possible to achieve the above functionality?
We are bound to use Authorize.net & PayPal.
Thanks.
|
|
|
|
|
Have you tried asking paypal and authorize.net? They should be able to tell ou for certain
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Yeah I have this problem - but I read it's because you need PayPal pro not standard - then you can use Payflow Pro features. It looks to be easier to code it on your site and send the individual items using pro but obviously it costs £20 / month.
I decided to stick with getting users to pay for things one at a time. Not my favourite option, but it works. I've made up for it a bit by pre-filling as much of the forms on the PayPal site as possible. So they only have to type the majority of the data once. <-- Done using the pdt variables
|
|
|
|
|
hello,
i am building an http client server communication. both client and server are placed on the same ip
(on an external equipment). inside the html document i wrote a script sending an http "get" request.
javascript has an open function that one of its attribues it url. what do i have to fill in this field?
that you,
|
|
|
|
|
er....
Please can you attach your code?
|
|
|
|
|
Got no meaning. I think you are using some javascript code that initiates one AjaX request.
Please let me know what exactly you are looking for so that we could help u.
|
|
|
|
|
hello,
thank you very much for your help.
The code bellow is the js i wrote in my html doc.
(It is taken from w3schools.)
try
{
xmlHttp=new XMLHttpRequest();
}
catch(e)
{
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
alert ("Your browser does not support XMLHTTP!");
return;
}
}
xmlHttp.open("GET",url,false);
xmlHttp.send(null);
What i wrote as url is: "http://"+the ip address of the equipment i am working on (http://10.0.4.150).
As i have already mentioned, both client and server are placed on the same equipment.
The server didn't get the request at all. I know that something does work because i got the html doc
by an http request.
I hope i explained myself properly.
Thanks again,
|
|
|
|
|
You cant access other web site using AJAX. AJAX can only access the pages that are within the same virtual directory.
Say your page which calls the AJAX is
http://www.abc.com/mno.aspx
And it calls
xmlHttpRequest.open('http://www.abc.com/xyz.aspx')
it will work fine but
xmlHttpRequest.open('http://www.xyz.com/abc.aspx') will give "Access Denied"
Hope you understand.
|
|
|
|
|
Hello everyone!
I have a problem with dropdownlist choice selection. I made 3 dropdownlists date month year for entering date of birth. For checking 31 or 30 and leap year i have to enabe autopost back..is there any way that without post back i can modify lists or change as i have seen in many websites..
|
|
|
|
|
You have posted the same question in asp.net forum and Its answered.
|
|
|
|
|
Dear All,
Can we receive Broadcasted messages on web (asp.net using c#).
Regards
Jalsa
|
|
|
|
|
|
Hi, when an asx file is played on the windows media player, i need to check if the user is logged in or registered. Can I do this on asx? Thank you.
|
|
|
|
|
asx is a media file format. why dont you check the user validation from within the page.
I dont know if the media format supports http calls to the server or not. You must load the media after checking the login status of the user.
|
|
|
|
|
Hi!
I'd like know if somebody know how get open windows name?
I want get a collection of all the open windows. I know in VB.NET, but dont know in DHTML/VBScript for Windows Vista Sidebar.
If somebody can help me, I'll to stay grateful! Thanks
Erik
|
|
|
|
|
in php you'd do this: Grab Title[^]
Maybe you can translate that into your code...
|
|
|
|
|
Hi,
I want to get the ID value or class value of my current DIV's parent using ASP. Does anybody have any idea regarding how to achieve this?
<div class="parent" ID="parent_ID">
<div class="child" ID="child_ID">
<%
tmp = <ASP code to get the "parent" DIV's class/ID value>
if tmp="parent" then
do something
else
do some more thing
end if
%>
</div>
</div>
Please help!!!
Thanks
- Jills
modified on Monday, August 3, 2009 3:27 AM
|
|
|
|