|
I need to learn and adpot the MVC methodology for building web apps. Which is the better way to go given that I have experience with ASP .NET Webforms - ASP .NET MVC or Ruby on Rails?
I've heard people going gaga over RoR and its simplicity and its features...
Started by SaM on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
The ability to rapid prototype, and a hobbyist RoR developer... .
It a lot of thought; since my area is pretty much 99% .Net based and that's what companies want, I decided sound like they are there in ASP .NET MVC in some form or the other.
|
|
I am thinking about migrating a VB6 (winform) application to the Web in ASP .NET (C#).
In the current VB6 program the screens structure works like this:
Login screen - enter parameters - takes you to Schedule screen - enter parameters - takes you to Barcode...
Started by John M on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
asp....
asp:Panel ID="Scanning" .
Scan.aspx
Piece Count Screen -> pieces.aspx
On postback of the asp form it would redirect to visible or not depending on where the user is in the process:
asp:Panel ID="Scheduling" .
|
|
In a ASP .NET 3.5 ListView InsertItemTemplate I would like to change a textbox:
<asp:TextBox ID="txt" runat="server" Text='<%# Bind("plant") %>' />
to a ListBox:
<asp:ListBox ID="list" runat="server" DataValueField='<%# Bind("plant")...
Started by John M on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tried SelectedValue ?
<asp:ListBox ID="list" runat="server" SelectedValue='<%# Bind("plant") %>' > </asp:ListBox>
<asp:ListBox ID="list" runat="server"> <asp:ListItem Text='<%# Bind("....
|
Ask your Facebook Friends
|
For my ASP .NET webpage I am using a MySQL database with a TINYINT field to indicate a boolean (0/1) value.
Thanks to stackoverflow I was able to read the field value into a Listview as a asp:Checkbox.
<asp:CheckBox ID="freight_foundCheckbox" runat...
Started by John M on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
<asp:CheckBox ID="freight.
Directly to .NET boolean and back when using the MySQL Connector/.NET .
|
|
I am succesfully building ASP .Net applications in NAnt using the ASP Compiler, without a problem., as part of my Continuous Integration process.
However, if I try exactly the same process on an ASP .NET MVC application, the build fails in NAnt, but will...
Started by Brett Rigby on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
I find studio to be more friendly that the asp compiler.
Solve what you wish to achieve.
|
|
I am using a .NET 3.5 ListView control and would like to display a TINYINT field value as a checkbox (0 = False, 1 = True).
How to do this?
I was trying:
<asp:CheckBox ID="freight_foundCheckbox" runat="server" Checked='<%# Eval("found") %>' /...
Started by John M on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this:
<asp:CheckBox ID="freight_foundCheckbox" runat="server" Checked='< to convert the value to bool:
<asp:CheckBox ID="freight_foundCheckbox" runat="server" Checked='<%# (int.
|
|
I have a web site that runs both classic ASP and ASP.NET Webforms. The sessions for each are separate.
I need to hit some asp page whenever a request is made on the ASP.NET pages.
Why? Because I need to extend the ASP's session so it doesn't expire.
I...
Started by Joseph on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Update - as you say HTML required to make the request to the ... .
You don't need to a do nothing ASP script file in the ASPX page? Or look at something like this .
Put a .asp page inside an iframe on the asp.net page? Just clarifying here...
|
|
I've written a COM interop enabled class-library in C# using .Net 3.5. The object is meant to provide some utility functions for classic ASP pages. I've written a test.asp page which instanciates the desired object and calls its methods. Works fine on...
Started by Matthias on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Server that has Internet Explorer 7 installed: "ASP 0177:8000ffff" KB937143 breaks ASP to .NET COM.
|
|
I have a asp:Menu bound to a Sitemap on my sites master page:
<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource2" Orientation="Horizontal" StaticDisplayLevels="2" CssSelectorClass="PrettyMenu"> </asp:Menu>
The menu works ...
Started by John M on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Don't know it applies in your case though:
http://support.microsoft.com/?scid=kb%3Ben-us%3B969612&x=5&y=10
In case anyone else encounters something similar... .
The following Microsoft KB article talks about it.
I had a similar problem with IIS 6.0 and IE8 .
|
|
I am using VS 2008.
Looking around on the forums/stack hasn't provided a clear answer on how to use MySQL with a ASP .NET site.
How do I configure a SQLDataSource to use MySQL by using the MySQL Connector NET provider?
I would prefer not to use the ODBC...
Started by John M on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
MySQl and ASP.NET tutorial
maybe this will help?
The C# version of creating a basic MySQL connection is:
<%@ Page Language="C#" debug="true" %> <%@ Import Namespace = "System.Data" %> <%@ Import Namespace = "MySql.Data.MySqlClient" %>... .
|