asp.net Interview Questions and Answers


 

Interview Question in asp.net

How to start web server on asp.net

It's been a long time since I opened my Visual Studio .NET 2003.

When I wanted to create or open a project, this prompt pops up:

"Visual Studio cannot create or open the application because the web server on this computer is not running. Start the web server before running".

How do I do that?

Help urgent

i am creating an online sales and inventory system as a project for college...sales system will be online while the inventory system is a windows application tht's only for the staffs' usage...i am using visual studio .net 2003 (VBScript) programming language and MS Access xp pro...i want to know which template should i open for the inventory system?? can i use the asp.net web application template for the inventory system?

Please help

i want to develop an online sales and inventory system for a bookstore. the inventory system is only meant for the staff. i plan to use visual studio .net 2003 using vbscript and ms access for the d/base. can someone please help me with the code to:

1)link access to .net
2)give a sample code for login, add, delete, update and delete
3)should i use windows application or asp.net web application for the inventory system??

Windows XP Log on Problems

I just got through setting up Windows XP Pro w/ SP2-- and I had 2 accounts set up, Administrator, and Guest, when the log on screen appears, it only let's me click Guest, "Administrator" isn't even listed. I put Visual Studio.NET 2003 on here as well and clicked the asp.net and made it administrator as well, could that be my problem, any solutions??? Please help me, I have never had this problem before with XP, please help!

I want to know the step by step procedure of using the visual studio.net 2003 i.e IDE

i want to know how to develop windows applications, asp.net web aplications, about ado.net etc...........................in VStudio.NET2003

A voting system--- asp.net

I'm creating a voting system..but the problem is when a user can press the button of votes several times before the page is posted to the server, so it keeps adding the votes to the item being voted. I don't know how to solve this problem?
I mean what type of button can I use so the user doesn't keep pressing the button several times to add votes?

I'm currently using a link button (Visual studio.net 2005) what other control button can I use to solve this so when the user presses it, it only counts 1 vote for the selected item??

thanks

How can I publish an asp.net website on a server

I developed an asp.net website using visual studio.net 2005. Now I wanna publish it on a server.
I used the "build>>publish website" and I set the target location with the url: http://...... .com but the publishing failed and i dunno why. Is there any missing requirements for the web server or what??

Asp.net /Ajax Problem

hi

when i inserted ajax update panel or script manger i was given following error....

Error 2 Element 'UpdatePanel' is not a known element. This can occur if there is a compilation error in the Web site. C:\Documents and Settings\admin\Desktop\BDSGame\BDSWebUI\... 3 10 C:\...\BDSWebUI\

and also i dnt get folowing dll's added to My web site bin as i have seen in other ajax projects

web.extentions.design.dll

system.web.extentions.dll



i used visual studio 2005 and instaleed asp.net ajax 1.0 extention

please gve me a favorable reply

Real wolrd asp.net project required

hiiiii i need to make real world project in asp.net. but as m a beginner dunno much.can any one give me??
or temme how to start n from where.i ve visual studio 2005.where shud i make my web pages n how shud i connect em??gime example codings..
or plz sggest some easy websites.. can i go for database management (in asp ony)its urgent
plz help

Best software development tools

I've been asked to find a few free tools which will help the software development team work more efficiently, at the moment all software development is done in c# using visual studio 2005 (asp.net apps mostly) and I'm looking for some add ons for this or a suggestion of some free tools which will help the team in their daily work. free if possible! but any help would be appreciated!
let me know the most useful app/tool tool that you feel a developer can't be without that uses VS2005!

Thanks.

Help with drop down list

Hello, I am working with c# and asp.net (visual studio 2005)

I have two dropdownlist. the first dropdownlist is year from 2004 - 2006 and the other is
week from 1-53.
I am trying to make the drodownlist for week start at week 42 whenever
year 2004 is selected. But start from 1 whenever any other year is
selected(2005, 2006).
thanks

HELP ASP.NET problem

i had a project being developed in the visual studio 2003 and using the asp.net that is inside. the problem now is that when i transfer the file to another computer running on Visual studio 2005 and did a project upgrade following the wizard, the project was not able to upgrade and there it shows that i cannot open the file in run time mode and view it in internet explorer. this had cause quite an inconvenienced and a huge problem for me. Is there any other way? not to forget the visual studio 2003 got the local host being the folder--> inetpub and inside have the folder -->wwwroot. that is where all the asp.net files i have created are stored. therefore the next big problem is that in visual studio 2005 i cannot find the folder. How? HELP!

Plz tell me how to connect oracle with vb.net and asp.net???

i am using oracle 10g express edition and visual studio 2005.
plz tell me how to reference the name spaces of oracle in vb.net

How to access IIS;s aspnet_regiis utility

I just installed IIS 5.0 and want to use the aspnet_regiis.exe command utility to register ASP.Net file mappings with IIS.

According to the asp.net book I have, the directory of the utility is:
C:\Program Files\Microsoft.NET\Framework\[Version]\... -i

However, when I checked the directory, there is no Framework folder inside the Microsoft.NET folder.

I have installed MS Visual Studio 2005 before installing IIS. Is there a way to access the utility?

Can you quickly suggest the softwares

Can you suggest the softwares other than visual studio 2005 for working with asp.net?

How can I dynamically bind data to a textbox in asp.net

I'm using Visual Studio 2005 and I'm looking for a way to programmatically bind data to an object such as a textbox using ASP.NET and VB script. I would really appreciate a quick how to?

I have Visual Basic 2005 Compiler. Can I write asp.net programs with vb in it

in visual studio.net 2003 when i start a project with vb.net i can use the choice "asp.net application".
here in vb 2005 i cannot see this choice. why?

Workflow Visaul Studio and Dreamweaver CS3

I am new to visual studio 2005 and an intermediate dreamweaver cs3 professional. I am planning to use asp.net , how do i integrate my design from dreamweaver to visual studio to be able to use the asp.net language? Is asp.net just like php wherein you just copy the source code and paste it on the page and it will work?

Does Microsoft visual studio web developer 2005 express edition supports for AJAX

first I downloaded ajax.dll and ajaxpro.2.dll .
and tried following code after adding dll reference to my asp.net project.

web.config file:

<configuration>
<system.web>
<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx"
type="Ajax.PageHandlerFactory, Ajax" />
</httpHandlers>
...
<system.web>
</configuration>


.cs file:

public class Index : System.Web.UI.Page{
private void Page_Load(object sender, EventArgs e){
Ajax.Utility.RegisterTypeForAjax(typeof(...
//...
}
//...
}

Create a user profile in asp.net using Visual Studios 2005 in cSharp

I'm creating a web-site similar to http://www.face-pic.com & http://www.myspace.com. I want to create a user profile which can do the following features

1) I want a website where users can send messages to other users

2) Logged in users must be able to upload images which are stored for individuals (just like my space). For example I want users to upload images to their individual’s profile, when they return the images are still there. But other users are not permitted to edit other user’s images.
3) Other users are only allowed to view other profiles.

4) I want users to be able to edit their profile, the problem that I’m having is that I have three pages called “myAccount” “Edit profile” and Profile. MyAccount takes the user to edit profile where they can enter general information like age hobbies etc. I want this information to be stored for that user only and to be taken from the edit page to the profile page which is shown to general users.

A feedback page
A simple forum


All of this must be done in Visual Studios 2005 using ASP.NET in C#

Can anyone provide information (websites or books, Clear step by step guides with pictures and examples) where I can accomplish this asap (where it takes me 2 days to finish)

Thanks
12345