Re: jsp to asp
- From: "Cowboy \(Gregory A. Beamer\)" <NoSpamMgbworld@xxxxxxxxxxxxxxxxxx>
- Date: Fri, 23 Nov 2007 13:00:12 -0600
If you ever used JSP with beans, that is closer to the ASP.NET model. If you
have placed all of your code in your JSP, you really will want to alter your
paradigm.
As far as the client side scripting goes, continue doing what you are doing.
JavaScript is still the predominant programming model and will even allow
you to program AJAX and Silverlight 1.0, although the AJAX work is much
easier with Visual Studio 2008 than hand coding.
BTW, if you have Visual Studio (including the Express SKUs), most of the UI
set up is drag and drop. To add handler, you simply double click on
controls. As such, the IDE pretty much guides your hand as you develop.
You will find that C# is similar to Java in syntax (yes, there are some
syntactical differences, but you will likely feel more comfortable than you
now think you will).
--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box!
|
*************************************************
"josh" <xdevel1999@xxxxxxxxx> wrote in message
news:d8d236a5-2573-4e83-b98e-10afc54b580b@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi, I'm a jsp programmer and I have changed work. My boss does not
matter about my previous
Java experience and so he told me to learn web programming using c#.
I have also many Javascript/DOM experience and I wish to program in my
"already learned mode":
In jsp I program to write Java code in .jsp page directly and I use
HTML and Javascript for client logic: e.g.
<%@ page contentType="text/html; charset=utf-8" language="java"
import="java.sql.*" errorPage="" %>
<%
Connection conn = null;
DatabaseMetaData dbmd;
String info = "";
try
{
....
%>
<html>
......
</html>
so is there an equal c# way or what are other ways to accomplish
that ?
Thanks.
.
- References:
- jsp to asp
- From: josh
- jsp to asp
- Prev by Date: Re: how to compile asp.net 3.5 application?
- Next by Date: Creating a Web Service (Service, not Client) from WSDL
- Previous by thread: Re: jsp to asp
- Next by thread: add a UserControl inside bulletedlist
- Index(es):
Relevant Pages
|