Hi, I cannot use any of the features (like intellinsense, auto tag creation, scripting, outline tags, switching between design and code) in my visual studio html pages (like .aspx, .ascx, .html ,etc.,.) in 2008. But in visual studio 2005 its perfect. I use svn (subversion) as my source control and am not sure that causes any issue. In short, i can open the page and work like notepad in visual studio) P.N: when i select tools=>options=>html designer, it shows An error occured loading this property page. For a better understanding, check out the url below a clear picture of my issue (since asp.net forum doesnot have the feature for picture uploading i am using another link for bringing out my issue.) http://www.daniweb.com/forums/post1074392.html Thanks in advance for the help. Mouli
jchandramouli
Posts
-
HTML (aspx, ascx, html pages) Blacked Out -
Convert page template to master pagehi, Is there a method or third party tool to convert page template to master page. Thanks in advance.
-
IIS and TomcatHi, Consider two websites hosted in different services: Web X (Hosted in IIS) Web Y (Hosted in Tomcat) I have made a successful integration between tomcat and iis using isapi_redirector. Now, i can access the Web Y through IIS. How can we connect web X with web Y? Like how can i access the site (Y) using site (X) through IIS. Thanks.
-
A security exception was not handled in your codeHi, I got an error "A security exception was not handled in your code" when i try to open a page using server.transfer.But when changed the application server it worked perfectly. what could be the issue? Is it an IIS configuration issue ,Server configuration issue or any other.. Thanks in advance
-
Regional Language Issue While Uploading ExcelHi, When i try to upload an excel file that has a date column, there is a issue in the system language. That is, when i tried my application in my system which has regional settings (System Language:English-US;Programs that run non-unicode format: English-US)and it was working perfectly. The datas got uploaded. But when i tried in another machine that has the system settings (System Language:English-UK;Programs that run non-unicode format: English-UK), this threw me an error "Invalid date format in excel". Help me out. Thanks in advance.
-
Project taking long time to build.Hi, I cannot find a visual studio forums section in this site and so i have posted my question here.. When i try to build my Business Logic Module Of My Applicatio, It takes a long time to build for a very small change.. say(if i change int i to int j), it takes nearly 10 mins to build the BL module alone.. What could be the reason behind it .. Thanks in advance.. and Sorry for the inconvenience for posting this qn in ASP.NET forum.. :)
-
Efficient way of accessing a Boolean from SQL ServerHi Mycroft, "If the column is a bit data type then it will always return 0/1 never a null" => This is a false statement. I tried using the following query and in all three executions the IsActive field is null. DECLARE @tb TABLE(UID INT ,IsActive BIT) INSERT INTO @tb (UID) SELECT 1 SELECT * FROM @tb DECLARE @tb TABLE(UID INT ,IsActive BIT) INSERT INTO #Temp (UID) SELECT 1 SELECT * FROM #Temp DROP TABLE #Temp DECLARE @tb TABLE(UID INT ,IsActive BIT) INSERT INTO Temp (UID) SELECT 1 SELECT * FROM Temp DROP TABLE Temp please correct me if i am wrong. Mouli.