Wednesday, February 10, 2016

Query Designer not displaying in visual studio 2013 solved


When I right click on visual studio 2012 existing data connection and click new query I see the query designer 

,However to do this in visual studio 2013 when adding a data connection you have to choose dot net framework data framework for oledb instead of  dot net framework data framework for sql server

Source:https://social.msdn.microsoft.com/Forums/sqlserver/en-US/ed4675d3-aa84-47db-bdf5-f852355409e6/query-designer-not-displaying-in-visual-studio-2013?forum=ssdt

 

Wednesday, January 27, 2016

Apache Shutdown Unexpectedly Windows solved

I just changed the port 80 to 7777 in httpd.conf and 443 to 4440 httpd-ssl.conf and it's working .

I follow this guide

http://w3guy.com/fix-xampp-error-apache-shutdown-unexpectedly/

Tuesday, December 22, 2015

Cannot start the website because administrative privileges are required to bind the hostname or port solved ,Sourav Bhattacharya,ASP.Net Faculty



I tried this solution


http://bosnia-aspnet.blogspot.in/2014/08/cannot-start-website-because.html

where it says

Find the csproj file
Search for these two lines and delete them
DevelopmentServerPort0/DevelopmentServerPort
IISUrlhttp://localhost:34567/IISUrl



but in my case I was creating a website so no csproj file
So I opened the sln file in notepad plus plus
and
UseIISExpress = "true"
to
UseIISExpress = "false"
and you are done
Sourav Bhattacharya
ASP.Net Teacher


 

Wednesday, September 9, 2015