Is there any example of using GetVerifiedStatus with Classic ASP?
Im downloaded the examples from Paypal but there is not any about GetVerifiedStatus.
Tks for help
All of the Classic ASP examples that we have would be found at https://www.x.com/developers/paypal/documentation-tools/paypal-sdk-index towards the bottom of the page. These SDK's may not include every example, however for the ones that are not included you could simply modify one of the other examples. It would just be a matter of passing over different parameters and values. You should be able to use the developer guides to see which variables are required, and what you can expect back in the response.
Related
I am developing a website where I need a captcha control and I want to develop the captcha control itself, so in the future I can change its length, type, color, and have it be easy to manage as well.
So, suggest me which technology used for to develop the capha control and how.
I am using asp.net platform with vb.net as the language.
You can try reCAPTCHA.
Check out this (free): http://www.codinghorror.com/blog/2004/10/an-aspnet-captcha-server-control.html
Or Telerik has a great Captcha product (not free).
BotDetect CAPTCHA is excellent. I just used it on a big project. http://captcha.biz/
There are lots of existing options you could use (as others have pointed out). But, if you want to roll your own, you might want to consider WPF/Silverlight. There are a lot tools in there to manipulate/transform letters and numbers that you could utilize.
You could apply a random (or several random) transformations to each letter/number of a randomly generated string of letters/numbers.
I am generating an aspx page which then I need to convert to png and store it somewhere.
A similiar situation with mine was asked before here but got still no response. I tried also the code that the Swapnil Fegade has asked but the code is looping continually making request to loading page and no conversion is actually being done.
I found some solutions on the web also but they require WebBrowser control which i understood can be used in windows form but i am building a web project.
Can you give me any hint or suggest any article that shows a full example doing this task.
Thank you guys in advance.
This one seems to do what you want:
http://www.codeproject.com/KB/IP/htmlimagecapture.aspx
I am looking at building the login/registration part of a website (ASP.NET) and would like to see some example code or instructions on how to do this properly. For example, how to correctly use cookies and how to encrypt what is stored in the cookie to ensure the session persists until they logout/timeout.
I do not want to use the builtin ASP.NET Membership/Provider stuff as it looks painful to use and not very flexible. Please do not answer with 'This is how easy the ASP.NET Membership/Providre stuff is to use, just check this out and you will use it!' as I don't want to use it!
Don't get me wrong, I'm just wondering what exactly do you find painful and not flexible about the ASP.NET providers? I've used them a lot and I find them very flexible. I've even written some custom providers which is a straight forward process.
If you don't want to use ASP.NET providers, what are your exact requirements? I might help you out if I understand a bit better what you are trying to achieve.
Michael
We are working on an ASP.NET CMS project using jQuery as the basis for our client side scripting.
The jquery-1.2.6.js file is the only script file that is always included. Other script files are currently included depending on what components the CMS editor is using on a page or page template.
A lot of the script combiners produce a static script. If we took that approach we would have to add all possible script files in just in case they were needed. We are not currently using any of the ASP.NET Ajax extensions so have not looked at what that may give us.
Anyone got any suggestions?
I have read Combining and Caching multiple JavaScript files in ASP.net but I don't think that covers off the conditional nature of our situation
So great I can use ScriptManagerProxies and some methods on the base master Page. However there is one other thing. Stopping all the ASP.NEt Ajax guff being sent down to the client. I am going to take a look at bleroy's hack until ASP.NEt 4.0 releases
TIA
Pat Long
Working in Sitecore on a site that had multiple scripts for different pages, we created a list of script items in Sitecore, then added a Multlilist field to the Items. We had a placeholder in the head of the master page, and dynamically added the scripts as they appeared in the multilist field. We did the same thing with CSS as well. It worked out nicely. (Specifically, it was on http://www.utulsa.edu)
Edit: I misunderstood what you originally meant. It seems like you may need combine and produce all the possible static scripts you need, then dynamically include the one you are looking for, if you're looking for only one script include per page.
Otherwise, you could just depend on caching to keep your script requests down, and do what you are currently doing
Edit 2: A third thought is you could write your own combiner that will combine scripts on demand, and include the generated (or pre-generated) script
I don't know if this will help you or not, but Scott Hanselman posted on twitter that you could download issues of MSDN Magazine for free. I followed the link and looked through a couple of issues and this month (Feb, 2010), and one of the first articles discusses predictive fetching with jQuery and ASP.NET Ajax.
This looks like it could be along the lines of what you're looking for. As far as stopping the AJAX requests, I haven't read the entire article, but I'd assume it mentions something in there (as predictive fetch would have to account for this).
i am creating a registration form for that i want to implement the captcha image.can i get the source code or any reference.Thanking you
Your best bet is to use reCAPTCHA. It's free, widely used, and well documented. And by using it you'll be helping the project along digitizing old books.
They have code samples for asp.net HERE
Take a look at this article (first result of search string asp.net captcha).