How Does Alpha Five Version 10 Rate For Web App Development

Apr 4, 2011

I came across this RDMS via the advert on stackoverflow. Seems to be in the vein of MS Access / Filemaker / Apex database development tools but focused on web based applications. It quotes rave reviews from EWeek and a favourable mention from Dr Dobbs regarding its ability to create AJAX web applications without coding.

The Eweek review, apparently written by an ASP.NET programmer, goes on to proclaim the ease at which apps can be extended using the inbuilt XBasic language and how custom javascript can easily be added without wading through code. Has anyone here built a web app with Alpha 5? Does anyone have comments on the development process, the speed of it or limitations they encountered along the way? To me it seems Oracle APEX comes closest to the feature set, has anyone programmed in both and have any comments?

View 1 Replies


Similar Messages:

Want To Learn Latest Version For Development

Feb 13, 2011

I want to learn asp.net latest version for development.what is the procedure to install .net at free of cost

View 5 Replies

C# - Allow Only Alpha Characters Into Textbox?

Jul 28, 2010

How can I prevent the user from entering anything but alpha characters in my textbox?

Update Forgot to mention that its a dynmic control (created on the form when the user clicks a button).

View 3 Replies

Generating Alpha Numeric User Ids?

Mar 10, 2011

I would like to generate sequential IDs in the format ZZZ999 starting from AAA001 but this is not for batch insertion of data. I want to issue the ID to users that signup on the website with the next available ID. Mutiple users can signup and should be issued the next available unique Id. I was thinking of storing the last used Id (just one row that is always updated with last issued id) in a table that I can lookup and use to determine the next id and update it. But given that mutiple users can be signing up at the same time, what is the best way to ensure that each user is issued a unique id while maintaining the issue of sequential ID. Will record locking work? I don't think so, as the last issued id can still be read by mutiple users and that it self will generate the same Id which will not work.

View 3 Replies

HTML Classes And IDs With With $ Or Non Alpha Numeric Characters?

Jan 3, 2011

I'm looking at some site code on an XHTML doctype and from what I'm seeing the framework is ASP.net. The IDs in the HTML has a "$" in there. For example:

<img id="$ct100templateContent$SectionPanel1$ctl01$ctl02ctl00_templateContent_SectionPanel1_ctl01_ct999img" src="this.jpg"/>

From a W3C semantic point of view the "$" is not valid in an ID or Class. IDs and classes can only contain alpha numeric characters in an XHTML doctype.

Is the the "$" a ASP.net naming convention referencing a web control or template item?

View 3 Replies

A Randomly Generated 20 Character's Alpha-numeric Key?

Mar 14, 2011

How can i create A randomly generated 20 character's alpha-numeric key in asp.net i need to save it i database on some link click.

View 3 Replies

Crystal Reports Objects Within Visual Studio The Full Version Or Is It A Trial Version

Nov 12, 2010

Are the Crystal Reports objects within Visual Studio (I'm using 2005) the full version or is it a trial version that is missing features?

View 1 Replies

Configuration :: How To Update The Licence For Dundas From Evaluation Version To The Licensed Version

Feb 25, 2011

We have an application that is already deployed in the production environment. And currently it is using Dundas evaluation version. We tried updating it to the licensed version by simply pasting the dll file. but we got the error message as "The file has not been pre-compiled and cannot be requested".

View 1 Replies

Get The Currency Rate From The Web Service

Feb 8, 2010

I was trying to use the web service for currency rate to get the rate, althought I have already add web reference to[URL] but I still do not know how to retrieve it from there. I'm using asp.net vb.

View 1 Replies

Web Forms :: Allow Only Alpha Characters Into A Dynamically Created Textbox

Jul 29, 2010

how can I allow only alpha characters into a dynamically created textbox? I don't think I can use a regular expression validator for this issue. Unfortunately, I cannot use Ajax for this issue either.

View 8 Replies

Rate A Product - Display 5 Stars?

Aug 25, 2010

How can one rate a product like in Amazon ie display 5 stars, on mouse over star gets selected & on mouse click, rating is saved?

View 8 Replies

C# - Implement Rate Limiting In A MVC Website?

Jun 21, 2010

I'm building an ASP.NET MVC site where I want to limit how often authenticated users can use some functions of the site.

Although I understand how rate-limiting works fundamentally, I can't visualize how to implement it programatically without creating a major code smell.

If it matters, all of these functions are currently expressed as Actions that only accept HTTP POST. I may eventually want to implement rate-limiting for HTTP GET functions as well, so I'm looking for a solution that works for all such circumstances.

View 2 Replies

Firefox Version Wrong With Request.Browser.Version?

Sep 26, 2010

I'm try to get my site to detect what browser someone is using to ensure they're using one that is compliant with our site. Everything works, except Firefox seems to post the wrong version in the Request.Browser variables.I'm on Firefox 3.6.10, but Request.Browser shows Mozilla 1.9.2.10. It's correct in the HTTP_USER_AGENT string:

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.10) Gecko/20100914 YFF35 Firefox/3.6.10 ( .NET CLR 3.5.30729)

Is there a way to detect it better without having to parse through the HTTP_USER_AGENT string?

View 3 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

C# - FormsAuthenticationTicket.Version Returns Invalid Version Number

Mar 8, 2011

Is there any limit on the size/numbers in the version number of the FormsAuthenticationTicket.

I tried to create an ASP.NET cookie using forms authentication, with a large version number(ex: 1234567 need this number for identification purposes). But when I decrypt the cookie I get 135 as the version number.

Initially the old forms authentication cookie was removed, in order to add new information.

Response.Cookies.Remove(FormsAuthentication.FormsCookieName);

Following is the code I used to create the FormsAuthentication cookie.

FormsAuthenticationTicket newAuthTicket = new FormsAuthenticationTicket(1234567, un, DateTime.Now, DateTime.Now.AddHours(5F), false, user_data);
HttpCookie newauthCookie = new HttpCookie(FormsAuthentication.FormsCookieName, FormsAuthentication.Encrypt(newAuthTicket));
Response.Cookies.Add(newauthCookie);

After retrieving the cookie, the version number I got was 135. This number varies with different version numbers.

string cookieName = FormsAuthentication.FormsCookieName;
HttpCookie authCookie = Context.Request.Cookies[cookieName];

if (authCookie == null)
{
return;
}
FormsAuthenticationTicket authTkt = null;
authTkt = FormsAuthentication.Decrypt(authCookie.Value);
if (authTkt == null)
{
return;
}
int versionID = authTkt.Version;

Can someone let me know if it's a bad idea to use such big version numbers, or am I missing something in this.

View 1 Replies

DataSource Controls :: Version 661. This Server Supports Version 655

May 22, 2010

I have Visual Studio 2008 installed on this workstation with SQL 2000, 2005 Express, 2008 Express and I think 2008 R2 (not sure if that is a version itselve or not)

I will call that workstation HOME

I created some tables in SQLEXPRESS through VS2008.

I worked on this project on another workstation that I just installed VS2008 annd SQLEXPRESS 2008 and I know that was R2

Installed Visual Studio 2010 trial edition between the thiem I made the tables on HOME and tonight for the first time since that install

I am now getting the "cannot be opened becuase it is version Version 661. This Server supports version 655..."

What to do now?

I can opened SQLExpress 2008 management studio and it is running.

So is my SQL 2000. The problem seems to be that after the VS2010 install neither VS2008 or VS2010 can connect to the SQLExpress 2008

What do I do now?

I can't remove sql 2000 because it is tied to several 3+ gig databases that will not work in Express.

View 2 Replies

C# - How To Upgrade Ajaxcontroltoolkit Version From 3.0.20820.0 To Version 3.5.40412.2

Jan 5, 2011

i am working in webapplication in asp.net using c#.I have a problem that currently i am using ajaxcontroltoolkit version 3.0.20820.0 but in this toolkit i don't have Editor Ajax control so i want to upgrade it with new version ajaxcontroltoolkit version 3.5.40412.2

When i upgrade it then my old ajax control is not working like validatorcalloutextender and requiredfieldvalidator etc.

so please tell me how can i upgrade ajaxcontroltoolkit version from 3.0.20820.0 to version 3.5.40412.2

i also use in web.config file but not successfull.

View 1 Replies

Web Forms :: Change Validation Expression On A Validator To Alpha Numeric Or Another?

Jan 12, 2010

MMM the title speacks for it self i think,

View 3 Replies

Forms Data Controls :: Disabling Alpha Input To A Text Box?

Sep 7, 2010

how to disable alpha input to text box..??

View 1 Replies

Web Forms :: Could Not Load File Or Assembly Alpha Date Picker

Jun 21, 2012

Could not load file or assembly 'AlphaDatePicker, Version=1.0.0.23, Culture=en-US, PublicKeyToken=9ffb2c51638f3726' or one of its dependencies. The system cannot find the file specified.

View 1 Replies

AJAX :: Using The Rate Control Without A Submit Button?

Feb 15, 2010

I'm trying to get this to work. My current problem is what to do if the user wants to give the same rating that already exists. For example, an item has a rating of five, and the user wants to give it another 5 rating.

View 5 Replies

Sql - Avoid Fast Rate Page Refresh?

Apr 21, 2010

I have a page that shows statistics for users, this cannot be cached because each user has different statistics and there are many thus the real time query must be made.

What the way to avoid database server overload when user will click F5's to refresh or to ask different queries in short time intervals ?

View 2 Replies

Web Forms :: If Enter Value As 133 And Rate As 100 - Find Out Percentage?

May 7, 2015

If I enter the value as 133 and the rate as 100 i need to find out the percentage....

View 1 Replies

Rating Control In AJAX - Rate Content Only Once After Login

Apr 7, 2010

rating control in AJAX. I want that a person when he visits my site,he is able to rate the content only once after login. I have developed the rating part but the person can rate multiple times.

View 3 Replies

How To Check The Quality And Bit-rate Of Audio & Video Files In C#

May 21, 2010

How can I check the quality and bit-rate of audio & video files in C# asp.net?

View 1 Replies







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