Creating A Framework For Web Forms Similar To Flex States?

Apr 13, 2010

I really enjoy the flex states framework. You define a few states for your control, and then can set child controls to only appear in certain states. Check out this code:

<s:states>
<s:State name="signin"/>
<s:State name="register"/>

[code]...

View 1 Replies


Similar Messages:

MVC :: Creating Two Similar Application?

Dec 14, 2010

I'm building an mvc application and the customer asked to build a similar application that have almost the same controllers and views

of course I don't want to copy the same files to make new project , so How can I create the second project without using (Copy & Paste ) on code

of course it goes without saying that I have DAL and BLL so I'm not asking about those two layers , My question regarding the mvc interface layer only

View 2 Replies

Using Entity Framework To Connect To Multiple Similar Tables In MVC?

Jun 10, 2010

A relative newcomer to .net MVC2 and the entity framework, I am working on a project which requires a single web application, (C# .net 4), to connect to multiple different databases depending on the route of access, (ie subdomain).

No problem with this in principle and all the logic is written to transform the subdomain into an entity connection and pass this through to the Entity Model.

The problem comes with the fact that the different database whilst being largely similar in structure contain 3 or 4 unique tables bespoke to that instance.

To my mind there are two ways to solve this issue, neither of which i am sure will be possible.

1/ Use a separate entity model for each database. -Attempts down this route have through up conflicts where table/sp names are the same across differnt db's, or implicit conversion errors when I try and put the different models in different namespaces. or

2/ Overwrite the classes which refer to the changeable database objects based on the value of a base controller property.

My question is if either of theser routes can ever work in principle or if i should just give up on the EF and connect to the dtabases directlky using ADO. Perhaps there is another way to solve this problem i haven't thought of?

View 1 Replies

Web Forms :: Creating A Dropdown Similar To The Time Dropdown In Outlook?

Aug 14, 2010

creating a dropdown similar to the time dropdown in outlook, located in the recurring event. The dropdown shows intervals of 30 minutes based on a 12 hour time format and allows the ability to put text in it.

View 1 Replies

C# - Creating A Custom Framework Extension?

Feb 21, 2011

What is the best way to go about creating a custom framework for asp.net?

We have several enterprise level asp.net ecommerce websites all running from completely seperate code bases. What I'd like to do is standardise the common components (session management/urlrewriting/surge control etc) and integrate them into the .net framework at the highest level possible and in a way that my developers cannot (easily) make changes.

I've considered creating a common assembly and just referencing that in each of the solutions but this still relies on the developer wiring up the httphandlers/modules and implementing the basepage design pattern for each individual page/masterpage.

View 1 Replies

Creating Framework For A Basic Browser Game?

Sep 22, 2010

beginner programmer - basic C#, first year of university going too slow in terms of actually learning programming. i'm looking at creating framework for a basic browser game, in the vein of urbandead and the now dead nexuswar. because i'm a student i already have visual studio 08 for free - because of this, and my experience with C#, is it worth it to choose ASP.NET/ADO.NET over PHP/mySQL for this kind of project?

View 3 Replies

Web Forms :: Three States With Image Presentation?

May 23, 2010

I have multiple nested GridView controls where I have one field/column that always have one of three values only (0, 1, and 2) and this is editable field. Now, instead of putting this field as a DropDownList for the end-user to choose either one of these values (0, 1, or 2), I am representing each value with a specific clickable image, so the user can click the image to switch among the mentioned field states (0, 1, or 2).

I managed to do this with ImageButton and AJAX. However, the volume of this field is too high, the page is quite big, and the end-user needs to do change the state/value of this field most frequently, which causing a flicking issue in the page and slowness (because the code is done by AJAX, so in the server side) where the customer is not accepting it.

how we can rectify this issue; for example using javascript coding (but I need to get the selected value from code-behind)? I found the AJAX Toolkit ToggleButtonExtender which is very good and not causing the flicking/slowness issue, but unfortunately, this ToggleButton has only two states while I need three states option.

View 2 Replies

AJAX :: Error While Creating Batch Request Using O - Data Framework

Mar 29, 2011

I was trying to send a Batch request with O-data framework given below is the code sequence.

updateService = new Sys.Data.OpenDataServiceProxy("http://localhost/myservice.svc");
actionSequence = updateService.createActionSequence();
actionSequence.addUpdateAction(newWr, workRequest.__metadata.uri);
try {
actionSequence.execute(
function () {
alert("Success");
},
function (error) {
alert(error._message);
}
);
}
catch (e) {
}

but this is failing because on response in the end i am geting some extra sections such as undefined ..given below is the response that i am geting in the end u can find the last 3-4 lines and junk data. which is

undefined undefined HTTP/1.1
Host: localhost
Accept: application/json
Accept-Charset: utf-8
The RESPONSE DATA
**************************
--batch_5d5c-5276-934b
Content-Type: multipart/mixed;boundary=changeset_ef52-ebe1-2137
--changeset_ef52-ebe1-2137
Content-Type: application/http
Content-Transfer-Encoding: binary
MERGE http://localhost/myservice.svc/data('Document_dd879945-cdd8-4336-95d3-365c52c617bd') HTTP/1.1
Host: localhost
Accept: application/json
Accept-Charset: utf-8
Content-Type: application/json;charset=utf-8
{"__metadata":{"uri":"http://localhost/myservice.svc/data('Document_dd879945-cdd8-4336-95d3-365c52c617bd')","type":"Accelrys.Services.DataContracts.WorkRequest"},"VaultId":"Document_dd879945-cdd8-4336-95d3-365c52c617bd","WorkRequestId":"WR.fee0a427-0652-4493-a785-d4b81f26549c","Title":"TEst
WR from Arun PP - Modified By Arun","Project":null,"CreatedBy":"sqalab\vault.admin","VaultPath":"","CreatedOn":"Mar 27,2011","ModifiedOn":"Mar 27,2011","ModifiedBy":"sqalab\vault.admin","Status":"Not Started","NeededBy":"Dec 31,2000"}
--changeset_ef52-ebe1-2137
Content-Type: application/http
Content-Transfer-Encoding: binary
undefined undefined HTTP/1.1
Host: localhost
Accept: application/json
Accept-Charset: utf-8
--changeset_ef52-ebe1-2137--
--batch_5d5c-5276-934b--

View 1 Replies

Forms Data Controls :: SQL Script To Insert Us States?

Feb 2, 2010

Does anyone know a better way to insert all us states?

insert
[tbl_state](state_txt)
select

[code]...

View 2 Replies

Security :: Built-in Membership Framework And Has Implemented Own Provider By Creating A Class That Inherits From MembershipProvider?

Jan 23, 2011

used the built-in Membership framework and has implemented his own provider by creating a class that inherits from MembershipProvider (found in System.Web.Security). I actually went ahead and created a custom provider which inherits from MembershipProvider. The problem is that there are several methods I do not really need. Also, the schema is totally different. Plus, most methods return a MembershipUser which means my User class has to inherit from it as well. So really, what benefits does the MembershipProvider and the whole Membership framework add to my system? Do these benefits justify the fact that I won't be using most of the methods on the class?

View 7 Replies

Web Forms :: Load The Dynamically Added HTML Controls During The Post Backs Without Loosing Their States?

Mar 5, 2010

Can any one let me know "How to load the dynamcially added HTML Controls(Controls added using javascript) during the postbacks without loosing their values?

View 1 Replies

Forms Data Controls :: Built A User Control That Displays A Drop Down List Of States?

Mar 17, 2011

I built a user control that displays a drop down list of states. I'm using it, but if I try to put it in a listview control, all I get is the frop down with nothing in it.

View 3 Replies

Asp.net - Get Flex Modules From ASP MVC?

Aug 18, 2010

We re developing an ASP MVC application witch the View (aspx) has a Flex embed. This aspx/flex view is composed by a flex application and several modules.So, when we call the application url (http://localhost:9090/MyProject/Flex/Index),the server invoke the method the will return the ActionResult that represents this action, in this case the ~/Views/Flex/Index.aspx (with the Flex app). However when the ModuleLoader,in the Flex application, try to load a module an error occurs. The problem is that the Flex application canīt directly access the modules folder (~/Views/Flex/modules/module.swf)Are there any way to get the module through an ASP MVC action? Or the best approach is to allow the access to this folder through web.config?

View 1 Replies

Database Connection With Flex And C#

Feb 4, 2010

I've started with Flex recently, I've noticed that some plugin for Visual Studio exist, instead of buying a licence for another program (Flex Builder). I was wondering how I could manage to remotely connect to my database with a Flash/Flex application with the help of C#/Asp.Net. If I've correctly understood what I've read in the last few days, there is basically no way to 'query' to a database with Flex 3. So I suppose there is another way by using a webservice in C# on the database server that would respond to the Http query from Flex. Am I right or totally of the track?

View 3 Replies

Put Flex Charts In Application?

Jan 29, 2010

Is it possible to put flex charts in a asp.net application?

Any other easy to use chart controls, but fancy looking ?

View 2 Replies

How To Get A List Of Countries And States

May 3, 2010

i want a list of all countries and states for free interms of xml,html,word,doc,notepad, .sql format..

View 8 Replies

How To Write Php Script In Flex Application

Aug 5, 2010

How can write php script in flex application ? . at the same time this script can be asp.net,javascript ...

View 2 Replies

Way To Pass The Root Url To The Flex Application?

Feb 21, 2011

I am working on a project that is primarily ASP.NET based. The main project is meant to be deployed to multiple locations for different clients, so one client might be located at website.com/client1 and another at website.com/client2. Within the application, we regularly use the application root operator ~ to get the path to a resource.We also have a bunch of Flex applications that get deployed in there, and many rely on web services within the ASP.NET application. What I'm after is a way to reference the services relative to the application root. Here's an example of the location of some files for two client deployments:

Client A
website.com/clientA/swf/FlexApplication.swf
website.com/clientA/services/webService.asmx
Client B
website.com/clientB/swf/FlexApplication.swf
website.com/clientB/services/webService.asmx

FlexApplication and webService are both exactly the same, so what I want to do is something like this in the Flex code:

var myService:CustomService = new CustomService(~/services/webService.asmx);
myService.callMethod("Test");

I would like to avoid using relative paths for the usual reasons. Is there a good way to do this or a good way to pass the root url to the flex application from ASP.NET?

View 3 Replies

File Upload From FLEX Or ActionScript 3?

Jul 12, 2010

I would like to know how to upload a file from ActionScript 3 (From a FLEX Application) to a Dot Net Back End, maybe to an ASHX file, an ASPX file or similar and using C# as core backend language.

View 1 Replies

Cookies - How To Manage States Of A Web Games

Nov 3, 2010

Say I need to develop a online cheese games and the game is just between computer and a real human player.

The req is to keep states (like steps,win history) usable even after the user closing browsers or server temp being offline in short time. Thus when the player goes back to the game page, he should be keep playing from what he played last time, and get his play history as well.

It is definitely need cookie to enable all this, but i m concerning about the security of using that. I should prevent ppl hacking the cookie directly to change the history or sth. My thought is to make the server end assign a token to client. All the steps and history data are associated with this token string and stored in a persistent layer (database).

Is it a overdesign , or there is a way to encrypt cookies.

View 3 Replies

MVC :: Does C# Uses Session Internally To Store The States

Nov 11, 2010

Does ASP.net MVC Uses Session internally to store the states ?

Wil MVC faile across Webfarms if session not managed properly ?

View 6 Replies

ADO.NET :: Query Is Returning Multiple States?

Mar 11, 2011

For some reason my query is returning multiple states. It will return records for CA, TX, AZ. All I want is NY that's it and to me it looks really clear.

SELECT [name1], [name2], [mail_street1], [mail_street2], [mail_city], [mail_state], [mail_zip], [phone], [website] FROM [flat_list] WHERE (([rl] = 'x') OR ([rs] = 'x') AND ([mail_state] = 'NY')) ORDER BY [name1], [name2]

View 1 Replies

Programmatically Upload Larger Files In Flex?

Mar 10, 2010

I created an application as part of an ASP.NET site. I would like to receive error notifications in my inbox whenever something goes wrong with that flash application.

As I do not have control over our mail server (which has a different domain name), I cannot establish a cross domain policy allowing me to send error emails to my inbox.

Instead, thought I'd send a request to an ASP.NET handler that sends an email on behalf of the flash app.

Now the problem: the error report should include a screenshot of the flash application at the time the error occurred. The FileReference class however only allows file uploads with user interaction (browse dialog) and cannot be used programmatically to send the screenshot to my ASP.NET handler. The plain old POST back only allows files up to ~200K.

Am I missing something or is there no alternative to :

using POST w/ a compressed or resized screenshot or forcing the user to first save a screenshot and then select it for upload?

View 1 Replies

Passing Parameter From Page To Flex Application

Apr 22, 2010

I have an asp.net page where I get the user_id from who's logged in. Now I need to pass this user_id to a flex application that runs in an asp.net page as a .swf. How can I get this user_id in a variable in my flex application. Or what is the best way to get the user_id into flex.

View 2 Replies

C# - .Net / Flex / Read Partial Results From URLRequest?

Mar 17, 2011

I'm working on a batch process script that's executed from Flex. The batch script is in a .aspx Page and returns partial results through the following class:

public class ResponseLogger
{
private HttpResponse _response;
public ResponseLogger(HttpResponse response)
{
this._response = response;
}
public void Start()

[Code]....

View 1 Replies







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