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?
priy
Posts
-
Reference properties not displayed in IDE VS2010 -
sum up rows in excelThanks Dave
-
sum up rows in excelthis doesn't seem to be a .vbs syntax...
-
sum up rows in exceli want to run a script outside the sheet using which the contents of the sheet get updated
-
sum up rows in exceli want to get a figure from a spreadsheet
-
sum up rows in excelHi 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
-
how to write " int he xml fileu can write "<" as " < "
modified on Friday, June 20, 2008 3:33 AM
-
service reference in asp.neti suppose your service is a dll only...
-
service reference in asp.netyou can do so by adding reference of the service dll and then using the same in namespace
-
.svc filesMy service does not recognse .svc files.why is it so? also,in the app.config file i do not get the . thanks in advance
-
implementing REST in WCFbut if i want to implement it using .NET 3.0 then how do i do it?
-
implementing REST in WCFHi, 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 plugin for VS 2005I 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?
-
how to pass paramters in an httprequesti want to implement a REST web service
-
how to pass paramters in an httprequestHi, 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); }