0
votes
0answers
7 views

Getting error Could not load type 'RemoteTerminalSystem._Default'. when debuging

I am trying to debug an asp.net app in VS 2010 and when ever I hit f5 I get the error Server Error in '/' Application. Parser Error Description: An error occurred during the parsing of a ...
0
votes
0answers
13 views

when i drag and drop stored procedure onto my dbml file(VS 2010) and save it creates another designer1.cs file

In my project i have data-access layer which contains dbml file(named test.dbml) used to drag and drop stored procedure and tables. 2 days ago strange thing happened when i drag and drop stored ...
0
votes
2answers
37 views

Status of Internal websites by using PING

Afternoon All, Just after a bit of advice on the best method to use for the following. I am new ish to .net and have an Asp.net web page in development that i simply lists some internal web sites by ...
-1
votes
0answers
31 views

How to enable crystal reports viewer in toolbox vs2010

im using visual studio professional 2010. And i can't seem to enable the crystal reports viewer inside the toolbox. I already change the target framework into .NET FRAMEWORK 4 instead of .NET ...
1
vote
2answers
22 views

A dangerous Request.Form when value entered into a textbox

I have a simple aspx page through which i am entering Text into a textbox the text are coming though texteditor so the text are with html tags. Such as <p>My name</p> the error which i ...
1
vote
0answers
21 views

Membership.Provider for mysql in asp.net issue

Using MVC4 synced to a mysql server. Did it successfully by changing the machine.config and successfully used the ASP.net Configuration Tool to create users. However when I log in with a username ...
0
votes
0answers
16 views

customize(visually) the login controls offered by visual stuio (2010)

I am using login controls in a website offered by visual studio but want to customize the look of the controls. To be more clear I want the end result look like this: adjust the length and ...
0
votes
0answers
19 views

How can I connect a jQuery slideshow with a database in ASP.net?

So I'm using a jQuery plug-in called Coin Slider. The slideshow seems to be working fine but I want to connect it with a database that I have created in the App_Date folder in Visual Studio 2010. ...
0
votes
4answers
43 views

Not able to set dropdownlist at page load

I am getting first time this kind of problem I am setting value of dropdownlist at page load from dataset But this is auto setting 0 index ..... My code : ddlEbitda.SelectedValue = ...
0
votes
0answers
20 views

need further explanation of “no symbols have been loaded” error

I have seen the posts on this site about the following error: The breakpoint will not currently be hit. No symbols have been loaded for this document. But, the problem descriptions and solutions ...
1
vote
0answers
26 views

Upload Zipper folder in Asp.net

I am new with asp.net and I developed a Islamic site and now I want to upload a zip folder with Quran-e-Pak(files) inside it on my read quran online page so when a visitor click on download link that ...
0
votes
1answer
43 views

reportviewer visible= false in page load

I have problem with the report viewer.If I set my report viewer as visible=false in page_load page on event button click, if i already set as visible=true, it still make the reportviewer visible= ...
0
votes
1answer
27 views

Issues using Sqlconnection with Visual Studio Express 10

I'm trying to make a mock inventory/customer database program for my employer. I'm new to C# and SQL, but not totally new to programming, with some basic knowledge of C++, php, and Basic, I went into ...
0
votes
3answers
46 views

Dynamic Buttons won't hold value after Post Back

I have buttons that display dynamically when the page loads. What is suppose to do is: Click a dynamic button, displays to a text box Click Issue Ticket Print Ticket 1. If I click on the next ...
0
votes
1answer
17 views

3D control for CAD that allows api manipulation for .Net Win or Web Applications

Our company has been challenged to create a 3D CAD Layout tool that could render.step files. What kind of controls are available that would allow component placement, snapping together, manipulation ...
0
votes
1answer
36 views

asp.net update panel not triggering

I have a repeater that I have included within an update panel and I have buttons and a drop down list outside the repeater . I do not want the page to load every time I click a button or or change ...
1
vote
1answer
35 views

Authentication & Authorization not working properly

I am first time dealing with authentication and authorization. In my web.config i have following code for authentication & authorization: <authentication mode="Forms"> <forms ...
0
votes
1answer
35 views

Access to hash.web denied

When I am attempting to debug an ASP.NET web form, I am getting the following error: Error 6 Access to the path 'C:\Users\Abhishek Panday\AppData\Local\Temp\Temporary ASP.NET ...
0
votes
1answer
70 views

Web.config changing file default location

I've have a tricky question for you: In Visual C# IDE, how do you change the location of a file within a seperate folder? So for example The inital path of this folder was ...
0
votes
0answers
22 views

when i see my website inside a VWD designer it works fine but on debugging or running the website it gives me only text

Question:- Please help me out of this problem i have a question and is unable to find the answer. i used google for a long for the answer but was answer less. can any one answer my question. i am ...
0
votes
0answers
22 views

Generate DBMethods on multiple tables

I am using DataAdapters to interact with the database, I have two tables in the database customers and cars I am trying to create a page where a user enters details of new cars and the plan is to use ...
2
votes
5answers
71 views

stored Procedure usage in ASP.NET

I am using StoredProcedure in sqlserver 2005. Stored Procedure: create proc useGetASP @PartyCode nvarchar(50) as select * from partyRegister where PartyCode=@PartyCode Go I was trying to execute ...
0
votes
1answer
68 views

mutiple search textboxes in asp.net

i have multiple text-boxes and one drop-down list in my system and i'm using the Query builder to select the data from multiple tables in the database (SQL server), and display them in the grid view ...
0
votes
1answer
40 views

Visual Studio 2010 + ASP.Net Web Project: Looking in current folder for web.config (instead of root)

So I have been developing this application for my boss over the past few weeks and then last night the IT Administrator jacks with my machine. I think the only thing he did was rename the computer ...
1
vote
2answers
47 views

Add a new property to an ASP.NET dropdownlist

I need to add a new property to asp.net dropdownlist called ScoreTitle. It will only accepts 4 values and I need intellisense to show those 4 values (e.g Value1, Value2,Value3, and Value4). public ...
0
votes
1answer
92 views

acessing username in web api controller when database table stores user as integer

Inside some web api controllers, I would like to access the User as indicated in this answer: http://stackoverflow.com/a/12705062/538962 sample code from answer... [Authorize] public ...
0
votes
3answers
81 views

Why is my ASP.NET Web Page not Getting or Setting my Session Variable?

I've added bits of debug code in an attempt to figure out what is going on with my Session variable, and it appears that it is always empty. Could someone tell me what I am doing wrong? This is ...
0
votes
1answer
42 views

Insert data from forms into datasets

I have a dataset set up with 3 fields, ID username and password. I want the user to type in a new username and passoword and this then gets saved back to the dataset. How do I take what has been typed ...
0
votes
0answers
37 views

Displaying an image in a ListView from a Access database

I am using ListViews in order to display data from an Access table in visual studio. I have an image saved in the database as a OLE Object. When I run the website in visual studio instead of seeing ...
1
vote
2answers
36 views

Selecting the wrong item because of old data in GridView

I'm working in Visual Studio 2010 with C#/ASP.NET and a SQL server database. I'm trying to fix a website that will allow managers to assign employees to various tasks. The problem now is that if two ...
0
votes
1answer
81 views

ASP.net 2010 (VB) Object reference not set to an instance of an object

Morning All, I am using VS2010 with VB and im trying to get a ping test working in my web application. In order to do this and test that it works i have simply created a button that when clicks ...
3
votes
1answer
38 views

unrecognized tag-prefix in my project in asp.net control

I'm having a major problem in my project that all the asp.net controls having error of unrecognized tag-prefix because of the all the internal tag has been converted to lower case and intellisense is ...
0
votes
2answers
25 views

Where's Solution Explorer in VS2010 (for mapped TFS project)?

I am using VS2010. The problem I have is I've mapped the TFS project to my local machine. Now, I can't see anything in the Solution Explorer pane. To now - I've gone into Tools > Options > Projects ...
0
votes
2answers
59 views

Use ASP.net 2010 B to Ping an IP Address

I'm trying to use a simple Ping technique to ping an IP Address. I have added Imports System.Net.NetworkInformation.Ping to my web page and tried to simply create a button that once clicked ping an IP ...
0
votes
2answers
30 views

Check to see if an internal web site is up and running

Afternoon All, I need to create a web page that essentially list my companies internal web sites. I essentially need to check a status screen that displays if the web app is up and running or if it ...
1
vote
1answer
89 views

Setting asp.net timer interval programatically

I am developing an asp.net website. I have an asp:Timer control to update the page for every 10 minutes. I did that setting the interval property as shown below.. <asp:Timer ID="Timer1" ...
0
votes
1answer
50 views

jQuery is Undefined as soon as .net solution is run

VS 2010, C#, MVC 3, jQuery 1.8.1.8. Project compiles fine on another developer machine, and I'm trying to set up mine to work. On Run, I get an error message "Microsoft JScript runtime error: ...
0
votes
1answer
45 views

Conditional Formatting using e.Row.RowType for a Gridview in ASP.Net 2010

Afternoon All, I have been searching the net for some help in reference to applying some conditional formatting based on a value in my grid view. I am using Studio 2010 in the form of VB. I ...
1
vote
6answers
53 views

Session variable can't be updated

Whenever i try to update a session variable that has been previously entered it won't update. Heres an example on what i'm talking about: protected void Page_Load(object sender, EventArgs e) { ...
0
votes
1answer
152 views

CRYSTAL REPORT FOR VISUAL STUDIO 2010 ASP.NET INVALID FILENAME ERROR

Hey everybody I am facing this error with crystal report Server Error in '/' Application. Invalid file name. Description: An unhandled exception occurred during the execution of the current web ...
0
votes
1answer
34 views

Ajax Control Toolkit PopupControl: Get the ID of the PopupControl from the clicked button

Currently I'm working on a project that requires me to make a ASP.NET page that contains schedules. The whole page schedules a week in total. Every day is represented by a table (in an updatepanel) ...
0
votes
3answers
22 views

How to handle SelectedIndexOutOfRange using try and catch?

I have a gridview and a delete button in Asp.net. Delete will only work when a row is selected from the gridview. I want to prevent the website from crashing by making it more user friendly. So if the ...
0
votes
0answers
11 views

Publish Web Configuration automatically change

I have a solution with a web application together with the one-click publish. In the properties of the web application --> Package/Publish Web is the configuration set to Active (Debug). When I ...
0
votes
1answer
48 views

Asp.net Allow access to Admin Only

I have a admin page in the secret folder and it should only be accessed by an admin. The way I attempted was creating a session and check if the logged in person is admin. This failed to recognise the ...
0
votes
1answer
36 views

How to filter Logging in ASP MVC?

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I want to customize my interface depending on the type of user logged. I was following this tuto in the microsoft site and ...
0
votes
0answers
35 views

VS2010 ASP.NET web app solution unavailable issue

I have an ASP.NET project managed in the VS 2010 IDE. I constantly copy it from one development machine to another. By its nature this ASP.NET project must run on an actual IIS. One development ...
0
votes
1answer
38 views

Lost the content of ASPX page on computer restart before Saving the file

I opened my Visual Studio and added some code to my previously created nonempty .aspx page. Before I managed to save it, power cut happened. When I was able to turn on my computer again Visual Studio ...
1
vote
1answer
46 views

How to get the onfocus event to fire for checkbox in firefox and chrome

In IE i am using an onfocusin event and everything works as expected for the checkbox however onfocusin only works with IE and not other browsers. Also the onfocus doesn't work for checkbox's either ...
0
votes
1answer
53 views

Why would DropDownList.Text is return 0 when it is clearly an empty string?

I have a drop down list that I am binding to a record that clearly sets value=0, text='' the dropdownlist looks fine, i do not see any text in the control BUT when i try to validate in the code ...
0
votes
2answers
38 views

Deploying a Visual Studio website vs web application

So I'm using visual studio 2010 to build a website that was formerly running on PHP, so I'm pretty new to the environment. In starting the project I built a website project, not a web application ...

1 2 3 4 5 54