How to Set Default Language in Web.config
Last Updated on Sunday, 5 May 2013 01:46 Written by Rodolfo Hernandez Wednesday, 8 May 2013 12:00
Having an asp app available in multiple languages is very good to reach a good audience. However you might want to set a default language so that it can be changed later by visitors. In this article I will give you a step by step guide on How to Set default language in web.config.
1. Open the web.config file of your application.
Learn MoreSend Email Using jQuery and Web.API (Part 2)
Last Updated on Wednesday, 27 March 2013 09:21 Written by David Bauernschmidt Friday, 22 March 2013 12:00
As promised here is Part 2 of Sending Email using jquery and web.api (including some validation). If you missed Part 1 then get it here. It is important to realize that if you are going to use web.api for web forms then you need to add the following to the global.asax.
Learn MoreSend Email Using jQuery and Web.API (Part 1)
Last Updated on Wednesday, 27 March 2013 09:25 Written by David Bauernschmidt Thursday, 21 March 2013 12:00
Every site no matter how small contains the ability to submit emails. These emails can be for contacting, notifying, fulfilling or subscribing to something. Since the world of AJAX, jquery, and other frameworks have been adopted by “main” stream companies, it seems archaic for a site to request the information and then to hit a submit button and for the complete page to be sent off to the server for processing. In fact, I think that all sites that have emailing of something should be required to use state-less, a sync processing. In this exercise I am going to show you how simple it is to be able to create a standing library that can be modified quickly to fit just about any email requirement. Once this is implemented you will be able to alter this library and have a real professionally done email submitting process.
Learn MoreReturn Binary Image Using Web Api and Knockout.js
Last Updated on Tuesday, 12 March 2013 07:29 Written by David Bauernschmidt Saturday, 16 March 2013 12:00
If you have a SQL database that has an image field in a particular table and want to return the image to the web site using web API’s then you almost have to extract the image as binary, read it to a memory stream and then save it temporarily on the server. Pass the location back to the web page where the web page then displays the image.
What if you don’t want to create a temporary file or what if you have a lot of images for a particular product you know the user is not going to look at all of them, but since they could you’re left to run through this process anyway. Here is another way you could do this. Instead of creating a temporary file just stream the image back in the way of a string. Then let your browser convert it to the binary image equivalent.
Learn MoreArvixe ASP.NET Web Deployment (How-To Guide)
Last Updated on Saturday, 9 March 2013 03:25 Written by Eric Anderson Tuesday, 12 March 2013 12:00
Setup for Arvixe WebsitePanel:
1.) Login to your Arvixe WebsitePanel
2.) Click Web>Web Sites> yourwebsite.com
3.) Now under your web site’s Home Tab in the Authentication category make sure
Enable Integrated Windows Authentication isn’t checked And that
Enable Basic Authentication is checked
4.) Now under the Extensions Tab in the ASP.NET category if your site was built
with .NET 4.5 make sure that you set the dropdown box to 4.0 (Integrated)

Recent Comments