webservices

webservices (3)

Tuesday, 18 December 2012 17:54

how to write web service by c#

Written by
Rate this item
(0 votes)

follow the steps to write web service in c# programming language-
opening a text editor,put the codes below and save the file as
web.asmx-
<%@ WebService Language="C#" class="WebService1" %>
using System;
using System.Web.Services;
[WebService(Namespace="http://www.yoursite.com/webservices/")]
class WebService {
[WebMethod]
public string SayingSomething() {
return "Hello all";}}

Friday, 21 December 2012 13:56

Asp.net web services

Written by
Rate this item
(0 votes)

From many years software makers or developers
facing problems on how to make data to both
outside and inside of the system maintaining
security

Rate this item
(0 votes)

if you want to read get/read data from a file according to
querystring using StreamReader then following codes will
help you.It is very useful in some case.here i get data from
a ashx file according to query string i pass to the file -


Latest discussions

  • No posts to display.