The remote name could not be resolved while using HttpWebRequest
The issue could be because of proxy setting not specified for the web application. The solution to this is to add the following conifig info in the application’s web.config...
View ArticleHTTP Error 404.3 – Not FoundThe page you are requesting cannot be served...
I was getting the above error while trying to run an ASP.NET page deployed inside IIS 8 in Windows 8 machine. The fix was to enable the ASP.NET option of the IIS feature Start -> Run ->...
View ArticleFinding no of users online ASP.NET
To do this, 1) Add a new item global.asax in your website. 2) Put the following code in it void Application_Start(object sender, EventArgs e) { // Code that runs on application startup...
View ArticleCalling Asp.NET web service from javascript (Ajax)
Here we will be calling the default helloworld webservice that is already created for us when we open a asp.net webservice project template in Visual Studio. We’ll just have a textbox(html control)...
View ArticleCalling Asp.NET web service from javascript (Ajax)-(Passing Parameter-GET)
Hi, Now we will modify the application that we developed in the previous post to work with parameters https://nishantrana.wordpress.com/2007/10/18/calling-aspnet-webservice-from-javascript-ajax/ 1)...
View ArticleCalling Asp.NET web service from javascript (Ajax)-(Passing Parameter-POST)
Hi, Now we will modify the application that we developed in the previous post to work with POST parameter...
View ArticleConfiguring ASP.NET Web Service
Hi, Well today i created a webservice which would fetch me some data from oracle database. The method signature was something like this public DataSet getEmpInfo {,,,,,,,,,,,,,} I was calling this...
View ArticleUsing Ajax in ASP.NET application -1
Hi, Here we’ll change the small application that we had written to get reponse from ASP.NET webpage rather than a webservice....
View ArticleUsing Ajax in ASP.NET application -2
In part 1 of this post we saw our response returning us a simple text which was holding a single value. But what if it is returing multiple values and it using some characters like | (pipe) or say...
View ArticleUsing Ajax in ASP.NET application -3 (JSON)
As we saw in our previous post https://nishantrana.wordpress.com/2007/10/25/using-ajax-in-aspnet-application-2/ How easy it becomes to parse the response and the values if it is in the XML rather than...
View ArticleJavascript and Asp.net
Let’s see how we can use javascript with our server side controls with very simple examples 1) One way is using controlname.attributes.add(string key,string value); Let’s see an example 1. Create a new...
View ArticleCreating and Calling ASP.NET AJAX Web Service
Hi, First we will create a new ASP.NET Ajax web site(Visual Studio 2005) or ASP.NET web site (version 3.5) if we are using Orcas(Visual studio 2008) Through Add New Item, add a new web service...
View ArticleCreating a simple Hello World ASP.NET AJAX web page.
Hi, Here we will create a simple ASP.Net Ajax webpage having a button and textbox control in it. On the click of button we will fill the textbox with “Hello world” string returned from the server...
View ArticleUsing Forms Authentication in Asp.NET
Hi All, To use form authentication in asp.net application 1- Create a new website 2- Change the name of the default.aspx to login.aspx 3- Add 2 labels one for username and password and two textboxes...
View ArticleUnable to generate a temporary class (result=1). error CS2001: Source file...
Hi, I was getting this error when I was trying to call a .NET dll from an ASP page. The dll was making use of a web service. And while searching for it I found that if we are making use of a web...
View ArticleGood site for understanding System.Net.Mail Namespace
Hi, Plzz do check out this site if you need to write code for sending mail in asp.net 2.0 http://www.systemnetmail.com/default.aspx Bye
View ArticleConsuming an Asp.NET web service using SOAP protocol from JavaScript
There are many ways we can consume a web service The three common protocols for accessing a .NET web service are HTTP GET, HTTP POST and SOAP. The trasport protocol used for them is HTTP. However a web...
View ArticleCustomizing Default IE Test Page for ASP.NET web service
Hi, When we create ASP.NET web service from visual studio and run the web service a test page opens up in which we can test our web service. We can easily customize that web service test page. The name...
View ArticleUsing Web Service as a Data Source in Sql Server Reporting Services
Suppose this is a simple web method inside a web service in ASP.NET. [WebMethod] public string HelloWorld(String FirstName, String LastName) { return “Hello “ + FirstName+ ” “ + LastName ; } Now we...
View ArticleIIS not serving ASP.NET pages
It mostly happens when IIS is installed after .NET is installed. So in this case we need to make use of aspnet_regiis.exe utility. 1) Go to command prompt 2) Go to the following path...
View Article