Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm using Angular js for my web front end, and ASP.NET as my back end.
Can someone point me to a headless browser I can easily use to render content on the server side for web crawlers.
I am looking at Awesomium.NET and WebKit.NET and both seems like an ovekill (to me. corect me if I'm wrong.)
Can anyone recommend me something more lightweight and targets to solve crawling issues in SPA type web apps ?
Thanks In Advance
PhantomJS is the way to go. Among other things, you'll need to create a JS script so you can render your pages as pure HTML before returning them to the web crawlers. More info on that here.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
hey freinds i am a new developer of ASP.NET in this world so i got little knowledge of ajax and would like to have more knowledge about that so please refer me the simplest and best knowledge source as i am new so that it should be easy for me to understand.............
thanks and regards
One of the best resources on the internet for web development is the w3school site.
It combines tutorials and references of many component's API of web technologies.
Take a tour at :
http://www.w3schools.com/
http://www.w3schools.com/js // for javascript
http://www.w3schools.com/ajax/default.ASP // for AJAX
Because of AJAX is more a method or technique based on JavaScript than an entire technology or programming language, you will not find any reference for AJAX, but you will find lots of tutorials and examples on the internet.
AJAX W3School Tutorial can be a good start.
AJAX is based on javascript, and ASP, .NET or C# can use it as it.
There is no Ajax for ASP (although it may be some quirks on IE*
interpretation of javascript).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Hi besides having spent the last three evenings trying to find out why my IPN handler has stopped wworking on all my websites (best I can work out is some file write permissions maybe) but yet to find the answer I have also yet to find the C# SDK samples for any of the payment methods Classic API, Rest API, etc. Do they exist?
I hate to say it but the more I try to read the Paypal dev site the more im considering using a different payment method for my customers, i've never wasted so much time trying to find information on something and hit the same no help link many times.
Trev.
The SDK and Samples are all available here. Please download and use them and incase you run into any issues with your integration please open issues in the respective github repos.
http://paypal.github.io
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Improve this question
Can anyone point me in a direction to create a photo gallery using only C# code for a website? I know there is javascript but I'd like to know how to do one in C#. Does C# even have any of the capabilities required to do a gallery like javascript does?
Bellow are examples of javascript galleries. Is it possible to do this in just plain old C#?
autoviewer
postcardviewer
The answer is yes (and no at the same time)!
Yes - it is possible to create a site using C# (IIS web server and ASP.NET).
No - it is not possible to avoid using JavaScript/Flash/Silverlight/etc. if you want to make your side dynamic and fancy.
The web still needs HTML to show a page, so you would use C# to create HTML code and the browser will render it and display it.
If you are happy with just a list of images (no fancy sliders or accordeon controls, or whatever that is moving) = static content - then look at ASP.NET / MVC4.
If you want to create a fancy site using C# and avoid writing the JavaScript for yourself then add a framework like jQuery UI or Bootstrap on top of ASP.NET / MVC - the frameworks will handle the fancy stuff for you.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
There is quite a few code samples on PayPal GitHub showing how to implement IPN listener in various languages (php, VB, ...). However, there is none for the ASP.NET MVC. Has anybody successfully implemented it? Or is there, similarly to the other code samples, a preferred/oficial way of implementing it?
A neat video on a simple MVC site structure that includes PayPal IPN:
http://www.asp.net/mvc/videos/mvc-1/aspnet-mvc-storefront/aspnet-mvc-storefront-part-22-restructuring-rerouting-and-paypal
Direct link to his IPN controller
https://mvcsamples.svn.codeplex.com/svn/trunk/Kona.Web/Controllers/PayPalController.cs
MVC/C# Example:
http://www.markstraley.com/Code/PayPalIPN
Thanks #Earlee!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm working on a code generation tool where the output is display in a tag and wondered if anyone knew of a CSS stylesheet that would format the output. My rendering engine is Javascript based and I'd like to continue perform all operations of rendering client side.
JavaScript isn't client side? Or am I not understanding your question?
you may want to look at Google Prettify, which, if I remember correctly, is what StackOverflow uses
You could take a look at http://alexgorbatchev.com/wiki/SyntaxHighlighter . It is web based, open source, and uses separate CSS style sheets for formatting and highlighting. Not sure if it is exactly what you want, but maybe worth a look.