【知識點】VS調試問題(C#)
無法在web服務器上啟動調試,您沒有調試web服務器進程的權限,您需要以web服務器的用戶賬戶身份運行,或者具有管理員權限。
原因:從Windows NT 6.1開始,既Windows Vista版本開始,增強了用戶控制,尤其是Windows 8。如果沒有用系統優化軟件做過用戶控制,系統權限調整,即默認的情況下。
Visual Studio 必須是"以管理員身份運行",即鼠標右鍵"以管理員身份運行",不是指你當前登錄的賬戶是不是Administrator的問題。否則當你的Visual Studio在F5啟動調試的時候,就會出現以上錯誤:"無法在web服務器上啟動調試,您沒有調試web服務器進程的權限,您需要以web服務器的用戶賬戶身份運行,或者具有管理員權限。"
解決辦法:
桌面,鼠標移動到Visual Studio 2012 上方。右鍵--〉屬性
單擊--〉高級
在"用管理員身份運行(R)" 打勾,然後確定。OK,解決了。
或者每次右鍵"以管理員身份運行"。
【知識點】VS調試問題(C#)
相關推薦
【知識點】VS調試問題(C#)
服務器 當前 用戶控制 ima ali 就會 高級 否則 問題 無法在web服務器上啟動調試,您沒有調試web服務器進程的權限,您需要以web服務器的用戶賬戶身份運行,或者具有管理員權限。 原因:從Windows NT 6.1開始,既Windows Vista版本開始,增強
【LeetCode】56. Merge Intervals(C++)
地址:https://leetcode.com/problems/jump-game/ 題目: https://leetcode.com/problems/merge-intervals/ Example 1: Example 2: 理解: 在有序的情況下,直接從頭到尾和
【LeetCode】48. Rotate Image(C++)
地址:https://leetcode.com/problems/rotate-image/ 題目: You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (c
【LeetCode】47. Permutations II(C++)
地址:https://leetcode.com/problems/permutations-ii/ 題目: Given a collection of numbers that might contain duplicates, return all possible unique
【LeetCode】43. Multiply Strings(C++)
地址:https://leetcode.com/problems/multiply-strings/ 題目: Given two non-negative integers num1 and num2 represented as strings, return the produc
【LeetCode】39. Combination Sum(C++)
地址:https://leetcode.com/problems/combination-sum/ 題目: Given a set of candidate numbers (candidates) (without duplicates) and a target number (
【LeetCode】36. Valid Sudoku(C++)
地址:https://leetcode.com/problems/valid-sudoku/ 題目: Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated accord
【LeetCode】31. Next Permutation(C++)
地址:https://leetcode.com/problems/next-permutation/ 題目: Implement next permutation, which rearranges numbers into the lexicographically next gr
【LeetCode】22. Generate Parentheses(C++)
地址:https://leetcode.com/problems/generate-parentheses/ 題目: Given n pairs of parentheses, write a function to generate all combinations of well
【LeetCode】71. Simplify Path(C++)
地址:https://leetcode.com/problems/simplify-path/ 題目: Given an absolute path for a file (Unix-style), simplify it. For example, path = "/home/
【LeetCode】62. Unique Paths(C++)
地址:https://leetcode.com/problems/unique-paths/ 題目: A robot is located at the top-left corner of a m
【LeetCode】61. Rotate List(C++)
地址:https://leetcode.com/problems/rotate-list/ 題目: Given a linked list, rotate the list to the right by
【LeetCode】60. Permutation Sequence(C++)
地址:https://leetcode.com/problems/permutation-sequence/ 題目: The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and la
【leetcode】7. Reverse Integer(C)
Description: Given a 32-bit signed integer, reverse digits of an integer. Example1: Input: 123 Output: 321 Example2: Input: -1
【LeetCode】91. Decode Ways(C++)
地址:https://leetcode.com/problems/decode-ways/ 題目: A message containing letters from A-Z is being encoded to numbers using the following mappin
【LeetCode】90. Subsets II(C++)
地址:https://leetcode.com/problems/subsets-ii/ 題目: Given a collection of integers that might contain duplicates, nums, return all possible subse
【LeetCode】89. Gray Code(C++)
地址:https://leetcode.com/problems/gray-code/ 題目: The gray code is a binary numeral system where two successive values differ in only one bit.
【LeetCode】86. Partition List(C++)
地址:https://leetcode.com/problems/partition-list/ 題目: Given a linked list and a value x
【LeetCode】6. ZigZag Conversion(C++)
題目: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this
【LeetCode】16. 3Sum Closest(C++)
題目: Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. R