Tagged Questions
1
vote
0answers
6 views
error CS0234: The type or namespace name 'Test' does not exist in the namespace 'SimpleDBAccess.Models'
I'm absolutely new at ASP.NET and MVC and so on. I'm trying to list in a web page the content of a SQL server database. In that way, i've created a simple MVC4 project with the followinf Index.aspx :
...
0
votes
0answers
5 views
ODP.Net support for ASP.Net projects
I used Oracle ODP.Net in VS 2010 winforms where Toolbox objects like OracleDataAdapter were available via drag & drop to the form, then configure the dataadapter and populate the dataset in ...
0
votes
4answers
47 views
Debug without step into any code in Visual Studio
Is there any tool or techniques that can capture all the variable values and output it to a text file. I'm trying to avoid using break point and stepping into the code in Visual studio for debugging ...
1
vote
0answers
30 views
Asp.NET application is supressing errors on localhost.. Why?
I am working on a web application, developing in VS 2012, and have lately been deploying fairly often to a test server. I keep a separate web.config for deployment, as I got tired of copying and ...
0
votes
0answers
16 views
ActiveX not working with Visual Studio
I created an ActiveX control on the basis of this blog
It is working fine with HTML page and ActiveX control is working properly.
But when I integrate it with Visual Studio it doesn't work. I mean ...
0
votes
1answer
51 views
Table Rows Disappear on Dropdown ItemSelected
Friends, This is homework.
Every time I change a dropdown on a webpage, the page "resets". A row I've inserted programmatically disappears and a new one is written. I want to let the user add ...
0
votes
1answer
27 views
Syntax error on javascript due to conversion VS2008 to VS2012
Recently I installed visual studio 2012. I converted my project in the log it seems to be fine, No errors. When I look in the code in the javascript at the end of the sentence he marks the ; red and ...
-1
votes
2answers
68 views
How to retrieve files from 2 different projects in the same solution without hard code the path? [closed]
I have 2 projects under 1 solution, 1 project called adminsite, and another 1 called publicsite. What i want to achieve is, i want to retrieve some files in publicsite sub folders and use those files ...
3
votes
1answer
167 views
Why does the old value stay in this object after it is reset?
I've shown three programmers this problem and we're all stumped. I call a Sql Server stored procedure in a foreach loop and the result always is the same as the first call. Even if I hard code ...
1
vote
2answers
45 views
ASP.NET Webform shows Error.ASPX page on runtime Errors
I'm just guessing this is a simple ASP.NET question :)
So here it is:
I have ASP.NET solution and everytime a "Runtime" Error happens a web page called Error.ASPX is shown.(call stack shows source ...
1
vote
2answers
47 views
how to set RequiredFieldValidator to validate against specific user control which has multiple instance?
so let say i have a user control which called 7 times in an aspx file, i put field validator control in that user control, the problem is everytime i click some buttons which cause postback, field ...
0
votes
0answers
20 views
conflicting packages on NuGet, Visual Studio 2010
I am creating a Windows 7 image, for a college dept.
It must include:
Visual Studio 2010
the lecturers has requested ASP.NET MVC3 with Tools, and would like the image to allow a local ...
0
votes
1answer
21 views
Controlling the automatic name of a website project in a visual studio
Is there a way to specifically name a website project "Website" in a visual studio 2012 solution?
For example:
Create a blank solution at c:\temp\Solution
Right-click in solution explorer, select ...
0
votes
0answers
22 views
Difference between building solution form visual studio by “Build Solution” or by using command utility aspnet_compiler
Is there any difference between building solution form visual studio by "Build Solution" or by using command utility aspnet_compiler -v /solution
Anyone please give me explanation on this ?
1
vote
1answer
26 views
Extra Columns in Asp:GridView
I am trying to show some Details on my Web-Page using the ASP:GridView Control. Accordingly, I have added the columns that I need to show. But, every column is shown twice (Pic) in the GridView .
By ...