Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

priy

@priy
About
Posts
15
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reference properties not displayed in IDE VS2010
    P priy

    I have VS2010 SP1 installed on my system. When I open a solution and goto added references, I am unable to view their properties.However I am able to view properties of .cs files. What is the issue here?and how can I resolve it?

    .NET (Core and Framework) question visual-studio help

  • sum up rows in excel
    P priy

    Thanks Dave

    Visual Basic csharp tools help

  • sum up rows in excel
    P priy

    this doesn't seem to be a .vbs syntax...

    Visual Basic csharp tools help

  • sum up rows in excel
    P priy

    i want to run a script outside the sheet using which the contents of the sheet get updated

    Visual Basic csharp tools help

  • sum up rows in excel
    P priy

    i want to get a figure from a spreadsheet

    Visual Basic csharp tools help

  • sum up rows in excel
    P priy

    Hi All, I am new to .net can some one help me in writing a vb script to add the values in rows in an excel sheet. say i have 5 rows with positive values.i want the result of addition of these 5 rows in the sixth row. Thanks in advance

    Visual Basic csharp tools help

  • how to write " int he xml file
    P priy

    u can write "<" as " < "

    modified on Friday, June 20, 2008 3:33 AM

    C# xml tutorial

  • service reference in asp.net
    P priy

    i suppose your service is a dll only...

    WCF and WF csharp asp-net question

  • service reference in asp.net
    P priy

    you can do so by adding reference of the service dll and then using the same in namespace

    WCF and WF csharp asp-net question

  • .svc files
    P priy

    My service does not recognse .svc files.why is it so? also,in the app.config file i do not get the . thanks in advance

    WCF and WF question

  • implementing REST in WCF
    P priy

    but if i want to implement it using .NET 3.0 then how do i do it?

    WCF and WF csharp wcf json question

  • implementing REST in WCF
    P priy

    Hi, can anyone please tell me how do i implement the following service as a REST service in WCF.I am using .net3.0,VS2005. also please let me know if anything else has to be installed. thanks in advance.

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.ServiceModel;

    namespace DLL1 {
    [ServiceContract]
    public interface ICalc{
    [OperationContract]
    int Addn(int a, int b);

        \[OperationContract\]
        int Mult(int a, int b);
    }
    
        public class Calculator:ICalc{
            public int Addn(int a, int b) {
                return (a + b);
            }
    
            public int Mult(int a, int b) {
                return (a \* b);
            }
    }
    

    }

    WCF and WF csharp wcf json question

  • WCF plugin for VS 2005
    P priy

    I want to implement a REST web service using VS 2005 & 3.0 framework.are any plugins required for the same? (WCF service template is not available in VS2005.) if not how do i create a service file for the same?

    C# question csharp visual-studio wcf json

  • how to pass paramters in an httprequest
    P priy

    i want to implement a REST web service

    C# sysadmin tutorial question

  • how to pass paramters in an httprequest
    P priy

    Hi, I have created a webservice and on the client side i want to access it using Httprequest and httpresponse classes. There are two methods in that webservice.1 method returns a string.the 2nd method requires two integers as input parameters.how do i pass these parameters in the request from the client. call to Merthod1 from client:

    HttpWebRequest myreq = (HttpWebRequest)WebRequest.Create("http://localhost:2054/my\_ws/MY\_WebService.asmx/HelloWorld");
    myreq.Method = "POST";
    myreq.ContentType = "application/x-www-form-urlencoded";

    call to method2 from client:

    HttpWebRequest myreq = (HttpWebRequest)WebRequest.Create("http://localhost:2054/my\_ws/MY\_WebService.asmx/Add");
    myreq.Method = "POST";
    myreq.ContentType = "application/x-www-form-urlencoded";

    server side for method2:

    \[WebMethod\]
    public int Add(int a, int b) {
        return (a + b);
    }
    
    C# sysadmin tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups