Web Development - Website Structure / Flow?

Feb 17, 2011

ASP.NET, web form model.Is there any sample code/site that demonstrate a couple samples for regular website patterns/ templates? Like if I want to use tab to switch between different pages, should I put the code in a single page or in different page, and treat each tab as a page.Or if in a search page (just a single search bar and button), should I display my result panel in same page using dynamically enable the result panel, or just to another page? I want to find a general design pattern/ template.

View 2 Replies


Similar Messages:

C# - .net Development Code Structure -Controllers, Services, Repositories & Contexts?

Dec 11, 2010

As a new developer I'm getting thoroughly confused by naming and structural conventions for developing c# code using best practice.I appreciate it's perhaps applicable to each domain I am developing for but I've seen the code of many different open source projects and there seems to be a common theme. The successful projects have well thought out structure for maintenance and extensibility.The terms context, service, repository and controllers are used often and I wondered if these are open to interpretation or is there a consensus or convention on what, where or how these get used.

In an e-commerce platform I've seen there are order services, order contexts, customer repositories and product controllers for example. What should they do based on these names? Does a controller do something different to a service? When should you use a context? Is there a convention for namespaces? It's mind boggling when you try and push from a spoon fed newbie developer and try to move on.What software/tools should I really be looking at to develop quality code? Unit Testing, Continous Integration, Resharper, Mocking tools, DOI Containers, nHibernate.

I'm not really aware of blogs/books that will help me push on from being a proficient web developer into someone who can develop extensible, quality and testable code. There are big gaps in authors assumptions. You are either a newbie or a software architect. I want to push from being a junior developer with a long term aim of being a software architect. I realise it's all about patterns and practices but where are the training materials? I work on my own so don't have the opportunity of learning from others.

View 2 Replies

How To Structure A Website Using Membership

Oct 27, 2010

i have to build a ASPNET website on which some functionalities will be available to logged in users.I'm trying to understand the right thing to to in building my pages.

I've found the following code in Page_PreInit:
protected void Page_PreInit(object sender, EventArgs e)
{
if (Membership.GetUser() == null) //check the user.. Weather user is logged in or not
{
this.Page.MasterPageFile = "~/General.master";
}
if (Membership.GetUser() == "ADMIN") //check the ADMIN.. Weather ADMIN is logged in or not
{
this.Page.MasterPageFile = "~/ADMIN.master";
}
else
{
this.Page.MasterPageFile = "~/Member.master";
}
}

..but i don't' know if this is the right approach in designing an app.Is it right to switch at runtime Master page according to username/role?

View 1 Replies

Visual Studio :: Website Structure Settings?

Nov 16, 2010

I have an ASP.Net website as one of the projects in a Visual Studio 2010 solution. I have several files in my ASP.Net website project which are named correctly according to the expected pattern of *.aspx and *.aspx.cs, however, when I view them within the ASP.Net website project, they are not displayed hierarchically and are instead displayed in a flat file view adjacent to each other. How do I get the files to display hierarchically within Visual Studio as they are normally when I add a brand new .aspx page to the website project? I have been looking all over for a corresponding Visual Studio MSBuild or settings file that might be storing these hierarchical display settings but have found nothing as of yet.

View 1 Replies

Trying To Create A Proper Directory Structure For A New Website?

Jul 9, 2010

Can you point me to a url for the proper directory structure to create for a new website?I can create a website project and add class library projects to the solution to create a fully functional website.My grey area is that I need to zip up the web site solution and hand it over to the client.I'd like to make sure that I hand over a solution with the most proper directory structure.I'll run you through a scenario:

1. Select File > New > Web Site > ASP.NET Web Site from the main menu
2. Save with a path of C:ProjectsTestWebSite
3. Right-click the solution in VS and select Add > New Project > Class Library
4. The new class library is added with an automatic path of C:ProjectsTestWebSite (2)MyClassLib1

It seems like there should be a way to create a better structure for this but I'm just not following the correct process. Can you point me to a url with instructions for managing a proper structure for this?

View 1 Replies

How To Structure Website To Expose Mobile Version

Mar 11, 2011

Pretend i have an existing web-site, e.g.:[URL]i now want to expose a mobile version of this web-site:

m.stackoverflow.com
IIS, with its host-header name resolution, would normally require two web-sites to be created:
www.stackoverflow.com
m.stackoverflow.com

Except now i have two web-sites in IIS. This means i have to duplicate code/files between them. i don't need to (nor do i want to) duplicate all the "model" and "controller" code between two web-sites. i would much rather have one web-site that exposes a mobile version.

i could have the default page in m.stackoverflow.com simply perform a redirect to a mobile landing page on the "real" web-site:

m.stackoverflow.comdefault.asp:

<% Response.Redirect "www.stackoverflow.com/mobile" %>

Then the client will end up at (for example) www.stackoverflow.com/mobile/default.aspx.

This isn't what i want. i want it to appear to the browser that they are visiting m.stackoverflow.com.

So what i could do in IIS is have two host-header names for one IIS web-site:

stackoverflow.com
m.stackoverflow.com
and inspect the http-request HOST header: [URL]
Host: stackoverflow.com

[Code]....

View 1 Replies

Web Forms :: Link To Files Outside Website Structure?

Jan 10, 2010

on my current contract, they're telling me that they want to store and upload files outside the website structure - same drive, but a different path (like C:Files)

They also want a page inside the website to list them - that part I can do - I use System.IO to list all the files in that folder, and put an HTML hyperlink to each one of them.

However, when you click on the files, they don't open.

The boss tells me this can be done by somehow making this outside folder a share and using impersonation - but I don't get it.

View 1 Replies

Web Development - Asp.net Website Publishing

Dec 2, 2010

if i have a separate dll for each page on my server and that is working fine. if I make some changes in code behind file of a particular page say, xyz.aspx page. then I have to upload the dll of that particular page. and that refreshes the whole web application and all sessions and other values got disturbed in the application. Is there any way that uploading the xyz.dll (of page xyz.apsx) on refreshes the xyz.aspx and didn't disturb the whole web application.

View 1 Replies

Web Development - Add Subdomain To Asp Website?

Feb 9, 2011

I have an asp.net website. I want to add subdomain for a secondary language:

[URL]= main
[URL]= chinese

I have no idea where to start.

View 1 Replies

Organising Website Development Process?

Mar 10, 2010

Is there a standard practice to organize the process of developing a simple website. there is no use implementing MVC as there is no data base involved. It will be very useful in organizing the project and separating

the aspx files and master page content(this can be very useful in implementing simple cms techniques)
user controls scripts styles images is there any industry standard or best practice for this.?

Update: yes the way i have listed is convenient. but it would be great if i could separate server codes and files like master,aspx.. and the actual page content.

One more reason for not using MVC: I usually outsource the SEO process. Now an MVC application can be greek/latin for my SEO expert. :)

The final structure:

Project
Images
Scripts
Styles
Images
Weblets
Pagelets
aspx files..

the images, styles and scripts will contain only those that are common for the whole project. The weblets and pagelets are in the idea as follows Weblets should contain a collection of weblets. A weblet is folder containing a user control,it's styles,scripts,images etc., Pagelets should contain a collection of pagelets. A pagelet is a folder containing the content for the aspx page. If there is an aspx file named "aboutUs.aspx" then there is a corresponding pagelet named "aboutUs" which contains aboutUs.html,it's styles,scripts and images. the aspx page should only include them here.This can be very useful in configuring CMS. If there can be betterments

View 3 Replies

Development Of A RSS Provider/Reader For Website Using Rss Toollkit?

Jul 31, 2010

I'm planning for development of a RSS Provider/Reader for my website using rss toolkit,

View 13 Replies

Website - Webforms Physical Site Structure With Dynamic Site Map

Feb 2, 2010

I am having a little difficulty trying to wrap my head around site structures. I have quite a large asp.net site, for which: Admins can see a user list, Each user can have many accounts, and for each account can have many items. I can picture this as a breadcrumb trail of editing a particular item. User List > Mr Bob > Accounts > BOB77 > Items > Item32 > Edit

User List = All the users Mr Bob = A user the administrator has selected from the User List Accounts = A list of the user's accounts 12BOB = The administrator has selected the account named 12BOB Items = A list of the items an account contains Item32 = The item that the administrator selected Edit = The action that the administrator wants to do. I can picture how this would look like if it was using ASP.NET MVC with the URL, but I am unsure how to map this out using Webforms, and in the physical filesystem.

This is what I have thought up about how I am guessing the physical structure would look like. Will this have to use session variables to achieve what I am trying to do?

/Users/User/Edit.aspx <- for editing a user
/Users/User/View.aspx <- for viewing a user
/Users/User/Accounts/Default.aspx <- for viewing all accounts
/Users/User/Accounts/Account/View.aspx <- for viewing an account
/Users/User/Accounts/Account/Edit.aspx <- for editing an account
/Users/User/Accounts/Account/Items/Default.aspx <- for viewing all items in an account
/Users/User/Accounts/Account/Items/Item/Edit.aspx <- for editing an item

Where can I read more about this kind of setup in a web application? Or, can someone point me in the direction of an available project that has this kind of layout?

View 1 Replies

Structure For "single-page" Ajax Website?

Mar 10, 2011

I know about the rules and this is not really a question that can be answered, but I really need with this.I'm making a website that have a javascript music player that cannot be interrupted every time the user changes between pages. So, the site must be a sort of single page, loading the ASPX files with AJAX.

What structure should I use for this? If I use a Masterpage with the player and separated aspx files, will I be able to load these files with ajax?

View 1 Replies

Delay In The Development Server Response In Case Of A Postback,in Website?

Jan 18, 2010

I am working on an Asp.net webiste.The response time(in case of a postback) of the pages in the website is ok on my local machine.But when I uploaded the same website to the internal development server and tried to access the server pages from my local machine,its taking bit long(in case of a postback) as compared to my local machine.I do not understand why the same webiste runs slowly on the dev server..

Following is the configuration of dev server.

Microsoft Windows Server 2003 R2 Enterprise Edition service pack 2
Intel(R) Xeon(R) CPU
E5450 @ 3.00GHZ
3.23 GHZ,2.00 GB of RAM
Physical Address extension

Following is the configuration of my local system

Microsoft Windows XP Professional Version 2002 service pack 2
Intel(R) Pentium(R) Dual CPU
E2180 @ 2.00 GHZ
2.00GHZ,1.99 GB of RAM.

View 1 Replies

Visual Studio :: Unable To Connect To Development Server On Running Website

May 12, 2010

I have VS 2008 with SP1 installed on Win XP. I have .NET 3.5 with SP1 installed When I ran and opened an existing project for the first time, I got the below error WebDev.WebServer.exe has encountered a problem and needs to close. After this error, I continusly get "Unable to connect to the ASP.NET Development Server. whenever I run the website. I checked the internet and ASP.NET forum and tried all the following Making port numbers auto assign Making it to a specific port number using the Custom web server Tried creating new web site and checking Replaced WebDev.WebServer.EXE after downloading it from a website My anti virus have not blocked any websites as such I tried resetting VS settings by running devenv /resetsettings what else might be the problem?

View 7 Replies

2 Browsers Open In Visual Studio WebSite Development When Running Without Debugging?

Jan 19, 2011

In Visual Studio, when I click > Debug, > Start Without Debugging, (with my default browser set to IE), the application starts but it opens 2 IE browser instances. It opens 1 IE instance to start BUT when I close it, it launches another browser instance with the same start page. This bug is repeatable and consistent behaviour, that I can reproduce on-demad in IE.

(In some other minor variations, it seems that depending upon exactly how I start it, it will open 1 browser instance with 2 tabs, each tab having the startup page in it. However, this is not yet repeatable or consistent. It has happened; but, as of now, I am uncertain as the the exact steps to reproduce this particular variation of the anomaly.)

I am using Internet Explorer 8 (IE8).

I am using on Windows 7 32-bit.

I am using Visual Studio 2008 Standard.

I only have 1 startup project defined in Solution properties.

I have all Toolbars And Extensions set to "Disabled" in IE.

I have turned off "Automatic Crash Recovery" in IE.

(This does NOT happen in FireFox.)

View 2 Replies

Is It Wise To Mix MVC Development And Web Form Development In The Same Group Of Products?

Oct 20, 2010

We have a largely asp.net web form team (With some Oracle developers thrown in).

Question 1:

Is it a good idea to start using asp.net MVC which will mean redevelopment of a number of standard controls for not much benefit.

Question 2:

Is it a good idea to hire developers where there most recent skills are with asp.net MVC?

I doubt there is any benefit adopting MVC now, given the 100+ applications in this suite of products, and the maintenance/rework this will cause. Given this, is there any particular reason to hire MVC developers, as they won't be hitting the ground running, which is what I need now.

View 3 Replies

Asp.net - 3D To Get The System To 'flow' Properly

Jan 25, 2010

I'm integrating a number of e-comm sites into different banks and decided the easiest method was to add in the dotnetcharge (www.dotnetcharge.com) library.It works well and means I can keep much of my code the same for each bank type and transaction.However, their support is a bit sucky (4 emails sent, 1 reply) and I'm utterly baffled on the 3D Secure issue.Does anyone have experience with dotnetcharge and 3D Secure?I have set the MerchantURL and the actual 3D Secure screen comes up - but I'm unsure how to get the system to 'flow' properly.Does anyone have any code examples or even pointers in the right direction?Failing that.This particular integration is with SagePay,which also has God-awful documentation and support.
Code for reference is as follows;

[code]...

View 2 Replies

Architecture :: Page Flow With Workflow 4.0?

Nov 10, 2010

Is there any good example to implement Asp.Net page flow using workflow 4.0 ?

View 3 Replies

Entire Flow For A Request Of A Page?

Mar 14, 2010

where i can get the entire flow of a web page request?I really want to know what erally happens inside (HTTP + IIS + page load)

View 6 Replies

SQL Server :: Flow Of Query Execution?

Jan 18, 2011

Can any one please provide link for flow of query exection in sql

For eg.
FROM, [JOIN CONDITION, JOIN TABLE ...], WHERE, GROUP BY, HAVING, SELECT, DISTINCT, ORDER BY, TOP

Suppose when we write query, how that query will get execute behind. I would like to know about that.
Can you please provide ariticles or link related to this

View 4 Replies

Custom Development Versus CMS Development

Jul 16, 2010

I am planning to develop a social networking website for student of a particular university with following facilities.

Forum, Blog, Creating profile, creating groups , Adding Friends, managing groups, dating, chatting etc.

Now if I start developing it from scratch, this will take a lot of time..

I couldnt find any CMS which can in developing social networking website.

Additionally, I would like the website to have my own custom design. Also it should have support for AJAX, SEO and integrating third party applications.

View 3 Replies

Desktop Development Versus Web Development

Sep 13, 2010

How do you know what is better to use for writing new programs? We are now using Access 2007 frontend with an SQL backend and we are going to VB.Net, what would be our next logical step?

View 4 Replies

How Messages Flow Between Computers Connected With Internet Or LAN

Jun 15, 2010

I have been doing Windows programming in .Net since last two years. Now I am shifting to web programming so I just stuck in understanding the fundamentals of web programming, after googling I came to StackOverflow to learn from all of you great guys.

My confusion is about how messages flow between systems in distributed enviornment ? I mean suppose I want to send a message "Hello" to a system connected to LAN or Internet, then what will be the steps taken to send the message.

Second thing is suppose my system is "A" and I wana send message to system "B" which is connected via a wire, so how the message flows on wire and how system "B" reads it from the wire ?

View 4 Replies

MVC :: Debugging Controller / View Data Flow

Feb 23, 2010

I've started using ASP.NET MVC on a project and have gotten a few working pages, but I recently ran into a problem where data I was carrying through a hidden field didn't carry for some reason. I can think of a couple of possible reasons and I could try things until something works but I prefer to work on observable empirical data. Thus the point of this inquiry.

I've got a controller (several), a model (several), a view (several), and data in the browser for the JavaScript to chew on. I can unit test my JavaScript code. The browser / view interactions go over the wire, and I can capture that either with Firebug or (if I want to punish myself) Ethereal. I can write unit tests for the controller and for components of the model. The thing that appears to happen in a pure "black box" is the mapping between the model objects and the view form fields. Somewhere in that process, it tries to map data from form fields into model objects before it hands a request to the controller and it tries to map data from the model objects to form fields when it processes the response. Even with the helpers in play, this is a source of bugs. There can be spelling disconnects, or a page might be inadvertently missing one of the fields of a model object because it didn't use it. It would be nice to know if a field didn't map and why.

Since it is happening on the server, this seems like the handoffs should be unit testable or at least loggable. The problem seems pretty bounded. I can't be the first person to have run into this question. Are there any hooks I can use for this? What are the best observation points in the framework to tap the process, both incoming and outgoing?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved