Microsoft Visual Studio Team System 2008
1
vote
3answers
6k views
WCF cross-domain policy security error
I am using VSTS 2008 + C# + WCF + .Net 3.5 + Silverlight 3.0. I host Silverlight control in an html page and debug it from VSTS 2008 (press F5, then run in VSTS 2008 built-in ASP.Net development web ...
0
votes
1answer
236 views
Displaying .aspx and .aspx.cs files such that it's not understood by the browser
I have to give the user the option to upload his own aspx and aspx.cs files on to the server,
and adjusting the hyperlink to point to a page which would do the following.
Display the aspx and aspx.cs ...
0
votes
5answers
159 views
How can I restrict the part of a website so that it can be viewed by only one computer at a time? [closed]
Using C# Visual Studio 2008 and SQL Server 2005.
One database server.
One webserver
Three clients
Webpage name is alpha. Site name is mysite.
I want that only one client at a time can view the ...
0
votes
1answer
661 views
how to quickly check communication protocol used by SQL Server
I am using VSTS 2008 + C# + ADO.Net + SQL Server 2008. When connecting from another remote machine, normally TCP/IP protocol is used by ADO.Net client to connect to SQL Server 2008. When connecting ...
3
votes
1answer
2k views
open source instant messenger?
I am using VSTS 2008 + ASP.Net + Forms Authentication + .Net 3.5 + IIS 7.0 + C# to develop a Web Application. I want to add web based instant messenging feature to my web application (using Forms ...
0
votes
1answer
97 views
mailmerge with visto how to get each record of MailMerge.DataSource.DataFields
I' have a Project that needs to do a mailmerge, I'm performing this with VSTO. I need to check if all records on the MailMerge.DataSource.DataFields are ok. i'm doing that with this code.
public ...
4
votes
3answers
2k views
Is it possible to disable the auto-merge option in Visual Studio Team System 2008? If so how?
I'd like to disable the automatic merge feature when checking in a file to TFS that another developer has worked on so that I always need to merge manually. Is there any way to do this?
4
votes
5answers
2k views
ASP.Net Response.Close issue
I am using ASP.Net + .Net 3.5 + VSTS 2008 + IIS 7.0 + C# to develop a web application. I find when debugging in VSTS 2008, if I call Response.Close() method in page_load (please refer to code below), ...
2
votes
1answer
121 views
Connect Unix/Solaris with .NET using SSH
For my project I need to connect with remote Unix server from my local machine. I want to connect the machine using Visual Studio in the same manner as we can connect Java using SSHXCute JAR and be ...
0
votes
5answers
577 views
How to get the constraints on a table
By constraints I mean checks, not nulls, primary key constraint, foreign key constraint
What SQL query to use
Visual Studio 2008 / SQL Server 2005 Express
Like for example to get table names
...
2
votes
2answers
3k views
how to dump response headers in ASP.Net
I am using VSTS 2008 + C# + .Net 3.5 to develop ASP.Net. I want to dump all response headers returned to client for a specific aspx file. Any ideas how to do this easily?
I know how to use ...
0
votes
0answers
38 views
VSTS Web Test Download PDF to a Disk
I wrote a code to capture the PDF from server response and write it to a file using Stream Write class but after the file is written i am getting the exact file size as original but when i open the ...
1
vote
2answers
2k views
SQL Server communication protocol issue
I am using VSTS 2008 + C# + ADO.Net + SQL Server 2008. My questions about what kinds of communication protocols SQL Server 2008 will be using, more details of my questions,
If the connection string ...
1
vote
4answers
3k views
“Unable to connect to remote server fail” in HttpWebRequest
I am using VSTS 2008 + C# + .Net 3.5 to develop a console application and I send request to another server (IIS 7.0 on Windows Server 2008). I find when the # of request threads are big (e.g. 2000 ...
33
votes
5answers
17k views
String escape into XML
Is there any C# function which could be used to escape and un-escape a string, which could be used to fill in the content of an XML element?
I am using VSTS 2008 + C# + .Net 3.0.
EDIT 1: I am ...
2
votes
3answers
6k views
How to check unique collection in C#?
I am using C# + VSTS2008 + .Net 3.0. I have an input as a string array. And I need to output the unique strings of the array. Any ideas how to implement this efficiently?
For example, I have input ...
2
votes
4answers
451 views
Can a transaction be rolled back after it's committed and connection is closed?
Can a transaction be rolled back after it's committed and connection is closed?
finally
{
// Commit the transaction.
sqlTran.Commit();
reader.Close();
...
7
votes
6answers
8k views
C++ RPC tutorial?
I want to learn programming C++ (native) on Windows platform for RPC communication. I want to learn both server and client side. I also want to learn some advanced topics, like performance and ...
3
votes
6answers
6k views
unhandled exception will make WCF service crash?
I want to know whether unhandled exception will make WCF service crash. I have written the following program which shows unhandled exception in a thread started by WCF service will make the whole WCF ...
0
votes
0answers
32 views
How do I debug 500 errors from a Web Test in VSTS 2008?
I have a set of performance tests running in VSTS 2008. The test code is on a different server than the application code. The test code is in C# and the application code is ASP.NET/ASP/C#/VB6.
If I ...
-1
votes
1answer
73 views
I would like to achieve the following layout using CSS please suggest “To the point” ways/examples
do not want to use tables
want to make a styling file, such that it can be applied to all pages i want
its like a template, using css
note
i am a beginner using this "css" yes there are numerous ...
3
votes
2answers
353 views
Calling python code from VSTO excel addin
I am working on an excel2007 plugin in VSTO and am using VB for coding it. One of the item in the plugin is the button, pressing which should give a call to a python program which will add some data ...
0
votes
0answers
43 views
How do i capture winform (for which controls are added at runtime) by using Automation testing using vsts2010
Actually in our company all the projects are based on surveys.So,we develop software for survey using c#.net
But recently we are started doing automation testing for a developed projects using ...
3
votes
4answers
3k views
Unauthorized access error to html pages in IIS 7.0
I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0. I have created a new web site and put an html file into the directory. And when I use browse function in IIS manager to browse the html file, I met with ...
0
votes
2answers
213 views
Any Ideas to Optimize the ASP.Net Server Load?
I am developing using VSTS 2008 + C# + .Net 3.5 to develop an ASP.Net application. At the client side, in order to keep the session live, I will refresh the server every 5 seconds. Here is my code at ...
6
votes
2answers
15k views
Timeout setting for SQL Server
I am using VSTS 2008 + ADO.Net + C# + .Net 3.5 + SQL Server 2008. I am using ADO.Net at client side to connect to database server to execute a store procedure, then return result from the store ...
0
votes
0answers
31 views
Test Project Error: the test could not be run because of the following exception exception has been thrown
I am using VSTS 2008 and trying to create a web test. When I stop recording web test, I get this messagebox saying : the test could not be run because of the following exception exception has been ...
0
votes
0answers
33 views
Load testing using VSTS 2008
I want to know load testing using VSTS 2008. Can anyboday refer me good tutorials? What is system and software requirement for it? Lets say we want to test a particular page of our project then do we ...
0
votes
4answers
9k views
Microsoft.SharePoint and Microsoft.Office namespace issue
I am learning from the following tutorial to develop application based on Microsoft Search Server,
http://msdn.microsoft.com/en-us/library/ms497054.aspx
and it needs Microsoft.SharePoint and ...
1
vote
4answers
4k views
VSTS Test Edition or HP's LoadRunner?
I have had this debate with some peers off and on for a while. I am certified in the HP tools, but have been spending more and more time with VSTS Test Edition 2008. I am looking for opinions on ...
-1
votes
2answers
221 views
What is "query writer, new query in SQL Server Management Studio Express
Using: SQL Server 2005 and Visual Studio 2008, C# website asp.net
Okay, I have always used SQL Server 2005 Express and its Management Studio as a host and a design interface to create tables from ...
2
votes
2answers
649 views
can i use multiviews and views for every single thing, i can do on a aspx page?
in short what are the limitations i will experience?
using
vs08, webapplication
note
any disadvantage u can think of, or have encountered
e.g. regarding coding, postback, event handling, ...
1
vote
3answers
812 views
GDR - deploying multiple database targets with one project
I'm using Visual Studio Team System 2008 with GDR Version 9.1.40413.00 and am trying to resolve the issue of deploying a single DB project to multiple databases. For instance if I have a ...
8
votes
2answers
22k views
beginner's tutorial for report viewer?
I am using VSTS 2008 + C# + .Net 3.5 + SQL Server 2008 + ASP.Net + IIS 7 to develop web application. Any quick and easy to learn tutorial for report viewer -- I want to generate report based on data ...
5
votes
1answer
5k views
C# WebClient with https
I want to use https to upload a file using WebClient's UploadData method. And I want to ignore server side certificate verification (always accept server certificate and only use encryption feature of ...
2
votes
2answers
1k views
How to get real code coverage using vsinstr/vsperfmon
my microsoft-based development environment looks like this:
- huge native c++ codebase, seperated into 10 projects
- each project has a dependent test project (GoogleTest unit tests), the sources to ...
1
vote
1answer
1k views
update web reference through commandline
Is there a way to update web reference in a Visual Studio 2008 project through command line?
I have a test code that reference to a web service.I want to run this against different servers and trying ...
0
votes
0answers
132 views
How to handle the loss of controls on post back?
If the execution of the code is allowed at post back, then for each post back extra column are created.
Yes, I know the row binded event is called only when the grid rows bind, which happens only if ...
0
votes
1answer
41 views
How to view individual perfomance of Browsers and Network in VSTS 2008 load testing?
In VSTS 2008 load test there is an option to add several browsers and network for load testing. Is there any way to view the performance of these individual browsers and networks in the summary ...
0
votes
1answer
135 views
how many joins can a sql query have
How many INNER JOIN s can a query tolerate
SELECT table0.person_name, table5.animal_name
FROM table1
JOIN table0 ON table1.person_id = table0.person_id
JOIN table5 ON table1.animal_id = ...
16
votes
2answers
30k views
where is gacutil.exe?
I am using Windows 7 Enterprise 32 bit. I have used Windows command line, and also used VSTS 2008 command line, but when executing gacutil.exe, there is command not found error.
I am wondering ...
1
vote
1answer
528 views
VSTO excel addin gets unloaded after button click event is handled
I have created a addin for excel, where there is a ribbon and a button on it. I have handled the event of button click with the following code
Private Sub test_button_Click(ByVal sender As ...
3
votes
3answers
2k views
.Net based open source search engine?
I am looking for an easy to use, maintain and extensible search engine (intranet, enterprise search engine) based on .Net technologies, better open source which is more capable of extension. Just ...
0
votes
1answer
77 views
SQL query like this please help me to correctly form it
select DISTINCT table0.person_name, table5.animal_name
from table1
INNER JOIN table0, table5
on table1.person_id=table0.person_id
and
...
3
votes
1answer
417 views
A basic load test question
I have a very basic load test question.
I am running a load test using VSTS 2008 and I have test rig with controller + 10 agents. This load test is against a SharePoint farm I have. My goal of the ...
-1
votes
2answers
94 views
where can i learn to program the sqldatasource
i am using linked severs and synonym in sql server 08
in vs08 webpage when i connect the sqldatasource to the db it doesnot show the linked server or the synonyms!! (i dont know why it doesnot show ...
4
votes
5answers
4k views
C# list file in directory issue
I am using VSTS 2008 + C# + .Net 3.0. I want to enumerate all files in a directory by creation time, i.e. files created more recently will be enumarate at first, older files will be enumerated at ...
1
vote
2answers
580 views
Silverlight deep zoom composing issue
Deep zoom composer itself is very nice tool. I am wondering if there are any automatic ways to compose? For example, I have 100 images, and I want to compose automatically as 10 * 10 deep zoom effect. ...
18
votes
3answers
74k views
set session timeout in web.config
I have tried very hard but cannot find a sample about how to set session timeout value for in-process session for an ASP.Net web application.
I am using VSTS 2008 + .Net 3.5 + C#. Here is what I ...
0
votes
3answers
132 views
how to setup developer team environment in visual studio 2008
I need to know how to setup a developer team environment for asp.net . At present i am using visual studio 2008 . What kind of the things i need as requirements .

