ASP.NET is a web application framework developed and marketed by Microsoft to allow programmers to build dynamic web sites and web applications. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ...

learn more… | top users | synonyms

-4
votes
0answers
32 views

login code error [closed]

PROCEDURE: ALTER PROCEDURE [dbo].[Login_Validation] @email varchar(100), @password varchar(50) AS BEGIN DECLARE @cnt INTEGER SET @cnt = (SELECT COUNT(*) FROM SUBSCRIBER_MASTER WHERE ...
0
votes
0answers
10 views

check whether username exists or not [migrated]

i have a registration page where when the user enters his email id, its being "verified whether he is already a registered user or not". i tried writing the code in the textchange event of the ...
-2
votes
0answers
15 views

how to display alert box in asp.net [migrated]

i have a registration page with a submit button. i want to show an alert box when the "user clicks on the submit button" after which the "data entered by the user is inserted in the database." int i ...
1
vote
1answer
41 views

What are the licencing requirements for publishing and distributing an ASP.net application

I started developing websites using PHP. I have read many times that PHP is free and open source which is an advantage over ASP.net. However, due to my current job requirements, I had to switch to ...
-5
votes
1answer
60 views

I need a date-picker for an ASP.NET page [closed]

I am trying to re-engineer a web application that currently uses an inhouse-developed date-picker control which has proven to be problematic -- for one thing it will only work on Internet Explorer and ...
-6
votes
0answers
65 views

I want to do a course named Advanced Diploma in Dotnet [closed]

I want to do a course named Advanced Diploma in Dotnet and the portions they mention to be covered are Portion:VB.Net,c#.Net,ASP.Net,ADO.Net,Sliverlight,AJAX,WPF,WCF,WWF,LINQ Time duration: 100 hrs ...
1
vote
5answers
175 views

Understanding unit tests/TDD for ASP.NET webforms [closed]

I'm the lead programmer at a small software firm (currently 4 developers including myself), we develop bespoke ASP.NET WebForms applications for businesses. I joined there in 2010 just after ...
-3
votes
1answer
102 views

why Visual studio takes long time to process? [closed]

while i am running asp.net web app in visual studio by pressing start debugging button, it takes long time to run. but when i press f5 key it takes only few seconds to process my web page, can ...
1
vote
2answers
93 views

Asp MVC section and partial views

I have a question regarding ASP sections and partial views. What ser the benefit of using one over another? Because if I have a menu, i guest that it could be both as a section, but also as a ...
0
votes
1answer
85 views

ASP.NET MVC Web Site & WCF Web Service - Sharing functionalities

I have the following situation: I have to create a website and a web service that will share a part of the functionalities. This is why I do not want to write code twice. I have thought of the ...
-1
votes
0answers
31 views

What are good resources for ASP.net tutorials that don't include the graphics way via visual studio? [closed]

I'm looking for a tutorial site that doesn't include microsoft visual stuio but just simple text coding. Every tutorial I find uses the microsoft visual studio and it just bugs the heck out of me ...
3
votes
1answer
121 views

Designing models for a generic service layer

We are building a web interface to a tiered membership system, which will interface with a third-party CRM web service for the creation and management of accounts. The web service, unfortunately, is ...
-2
votes
0answers
49 views

in asp.net how we define a roles/ permission via GUI n check-box selection roles to particular user? [closed]

i want to add a new users, and as a ADMIN i also want to assign different roles n permission to specific user using checkbox options of roles selection....
2
votes
3answers
235 views

Microsoft's coding standards for ASP.NET controls

I cannot find any naming standards/conventions in MSDN for naming ASP.NET controls. One of the following standards tends to be used by programmers: lblAddress AddressLabel Address According to ...
-1
votes
0answers
32 views

Is Buffer can effect Http Communication also [closed]

I am working in project in which I need to send https post request to a url(Server) but Time difference between request and response is quite high. At Server end they are sure that they are sending ...
5
votes
4answers
180 views

Architecture suggestions on a multi-project multi-database 'intranet'

Here is the situation I have inherited: We have approximately 10 websites (Asp.net web forms) that each have their own database. Each of these databases houses some site specific data, and each has ...
-1
votes
0answers
12 views

custom error for asp.net not working [migrated]

<customErrors mode="RemoteOnly" defaultRedirect="~/Errors/Oops.aspx"> <error statusCode="404" redirect="~/Errors/Oops.aspx" /> </customErrors> normal page name errors are handling ...
1
vote
0answers
18 views

When I submit HTML characters in my form, why does ASP.NET throw an internal server (500) error? [migrated]

When I put in HTML characters in my form, such as <br />, ASP.NET throws an internal 500 exception as described here. A potentially dangerous Request.Form value was detected from the client ...
4
votes
1answer
99 views

How cache works in ServiceStack web services

I am new to caching and trying to understand how it works in general. Below is code snippet from ServiceStack website. public object Get(CachedCustomers request) { //Manually create the Unified ...
0
votes
4answers
171 views

How to avoid repetitively logging in to web site?

While developing web sites it can be annoying that I have to login to the site. Every time the session runs out I have to go through a flow like... Open logon page -> enter username/password -> click ...
-3
votes
1answer
240 views

Which framework should I learn if I want to do web development in Java? Any advice? [closed]

Well, I don't have a strong background in programming. I know C, C++, some C#, some vb, and some basic java and SQL, that's it. I don't have any work experience in web development, so just consider me ...
3
votes
3answers
126 views

Web Project Class Architecture

I think this is a good question for here but I'm not 100% sure. Please flag if it's too vague. I've worked on many websites where common framework classes are overridden. Since I work mostly in ...
6
votes
2answers
421 views

What is the difference between PHP and ASP.NET Web Forms in page size?

I plan to program web applications for small companies. When I read about ASP.NET Web Forms, I liked its way of building dynamic sites. However, I have heard from a friend that Web Forms could ...
4
votes
3answers
176 views

How do ORM'S manage CRUD operations in multi thread environment

Suppose I have code which retrieves an object and modifies it and submits it via any ORM from a web application. Below is the pseudo code: First request var objCust = ...
2
votes
3answers
177 views

Is it possible to get dynamically generated html in asp.net tags using HTTP Modules?

I want to know if it is possible to write to a log/text file dynamically generated HTML in asp.net tags in an .aspx page using HTTP modules. By dynamically generated HTML, I mean the html content ...
0
votes
3answers
125 views

Re-engineering an ASP.NET AJAX project as ASP MVC

I have been asked to investigate the possibility of re-engineering an existing ASP.NET AJAX Web Application as under MVC. The project, as it stands ATM, is very heavily relient on Telerik's ASP.NET ...
0
votes
1answer
158 views

Controller layer and 3-tier architecture

What is controller layer and where we put this in our 3-tier architecture? 1)UI 2)Business Logic Layer 3)Data Access Layer I search in net but unable to get exact ans.Any links or sample example ...
0
votes
1answer
43 views

Formatting Dynamic Web Pages

A page built so that is has server side scripts implemented on the page. Should indentation of the code be according to the server side logic (making it easier to read while coding) or according to ...
4
votes
2answers
365 views

A design pattern for data binding an object (with subclasses) to asp.net user control

I have an abstract class called Address and I am deriving three classes ; HomeAddress, Work Address, NextOfKin address. My idea is to bind this to a usercontrol and based on the type of Address it ...
0
votes
2answers
133 views

How to make ASP .NET MVC website have a continuous process running?

This website is supposed to be a game where the players have some 'buildings' and these buildings produce resources. E.g. an iron mine may produce 30 pieces of iron ore per minute and automatically ...
-1
votes
1answer
173 views

Migrating from PHP to ASP .NET MVC [closed]

I plan on migrating a website from PHP to ASP .NET MVC. However, since the website is large and this migration can't be done in a short time I plan to use both MVC and PHP pages together. So the idea ...
3
votes
1answer
258 views

One Login amongst multiple ASP.NET MVC applications Questions

I have been working on an ASP.NET MVC 4 application that uses forms based authentication. Users are validated against a membership provider based on a provider selection on the login form. For ...
1
vote
5answers
316 views

Should heavy binary files not be stored in database? [closed]

I was asked an interesting question: Should a database contains all data? Or heavy binary files should be stored in file system? Example of heavy binary files : videos or heavy pdf files (+200 MB) ...
0
votes
1answer
123 views

Other than MSMQ, what is the easiest messaging queue to get installed on Windows? [closed]

When working with a fairly average team (limited knowledge with the latest and greatest), what would be the most ideal messaging queue to use in a windows environment? Something that installs easily ...
2
votes
2answers
161 views

Overcoming circular reference

I am working on an asp.net MVC web application which contains several projects. One is BusinessObjects, which contains business logic / processes. Another is EmailGeneration which is used to send ...
4
votes
2answers
271 views

How does authentication work with ASP.NET (using Live ID and\or Windows Authentication)

I'm primarily a .NET desktop app programmer. Coming into the web world has been difficult. I'm trying to convert one of my Silverlight apps into HTML. But I'm having a hard time figuring out the ...
2
votes
1answer
270 views

Newbie ASP.NET developer being forced into MVC4 with WebForms

I recently got hired on as a new ASP.NET developer (C# code behind). When I arrived, I was told that they were moving to MVC 4, and so I bought two books on that. However, the other day I learned ...
3
votes
1answer
199 views

Were there major changes in testing practices in ASP .NET between 3.5 and 4.5?

Obviously, testing methods are language-independent. An integration test stays an integration test no matter what the technology. But platforms implement some kinds of testing support. And the ...
2
votes
2answers
134 views

Different Project Type in a Single Website

I have developed a website in asp.net and I have some additional tasks, improvements to develop. In order to get experience in asp.net/mvc, I want to create an admin panel using asp.net mvc. Is this ...
0
votes
0answers
24 views

multiple client same project [duplicate]

Possible Duplicate: multiple client multiple project Sorry I will try to keep it simple because I am not good at English.I have 3 project files. They are all same projects but used by ...
2
votes
1answer
41 views

Reporting and handling asynchronous process errors to a client

I have a product with two separate applications. The core of the product lives in the database (oracle) and runs according to a schedule. The other is a client application (currently ASP.NET MVC3) ...
1
vote
1answer
198 views

The Jitter (the just-in-time compiler) in ASP.NET [closed]

I know that C# gets compiled to an IL then after that to a machine code depending on the machine using just-in-time compiler. My question will go to ASP.NET. Is it the same? Does it require 3 steps? ...
0
votes
2answers
193 views

Idea to develop a caching server between IIS and SQL Server

I work on a few high traffic websites that all share the same database and that are all heavily database driven. Our SQL server is max-ed out and, although we have already implemented many changes ...
0
votes
1answer
116 views

How to create a Request Specific Thread Safe Static int Counter?

In one of my server application I have a class that look like, class A { static int _value = 0; void DoSomething() { // a request start here _value = 0; _value++; ...
2
votes
1answer
219 views

Organizing ASP.Net Single Page Application with Nancy

As a personal project, I'm creating a single page, asp.net web application using Nancy to provide RESTful services to the single page. Due to the complexity of the single page, particularly the ...
1
vote
3answers
275 views

Setting up ASP.NET structure for code

I've always coded in C# MVC3 when developing web applications. But now i wanted to learn a bit more about developing web sites with just ASP.NET. But now i'm wondering what a good setup for my code ...
0
votes
2answers
138 views

add a prefix to localhost [closed]

Is there any possibility to add a prefix before localhost? My question is that I want to add a prefix before localhost for my project url (ie. "dev.localhost/project/default.htm"). This is for an ...
-1
votes
2answers
246 views

How to translate PHP and ASP code in both directions [closed]

Is there any IDE that can help convert PHP code into ASP, I mean in both directions. Please share if you have any idea. Someone also has an idea, or can give any directions about how to go about it ...
0
votes
0answers
115 views

Admin Panel like Custom Framework [closed]

I want to Create a Framework , like Admin panel , which can rule almost all the aspects of what is shown on the frontend. For an (most basic) example: If suppose the links which are to be shown in a ...
2
votes
1answer
487 views

Should I implement BackBone.js into my ASP.NET WebForms applications?

Background I'm trying to improve my group's current web app development pattern. Our current pattern is something we came up with while trying to rich web apps on top of ASP.NET WebForms (none of us ...

1 2 3 4 5 8