473,586 Members | 2,639 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP .NET a downgrade from what VB, ActiveX and Visiual Studio could do - Help?

JS
Hello,

I am using ASP .Net to create my own web controls and I have noticed that
there is one too many requirements that forces the developer to be aware of
and get involved with. In the past the developer could choose between using
VC++ and/or VB to create active X controls which primarily only required for
the developer to focus on the logic of the code behind of what the control
needed to accomplished. The new Visual Studio .Net does leave a lot to
desire from what the old Visual Studio 6.0 allowed to do. Now I have to:

- Render the control (Studio 6.0 allowed for me to just drag the look and
feel that I wanted): Is this a something that Microsoft did not have the
time to think of? Or have they just decided that the world needs more
developers ... What happened to the concept of ZERO Coding? What happened
to the fact that the business analysts will be able to compose Software
applications together?

- There are one too many Interfaces and idiosyncrasies that makes it a
tougher element to learn - To begin with the books out there are very poor
(actually one of the best websites I found was www.asp.net - which you would
think would carry least clear content) - Microsoft Press books are faulty
and WROX (you know what WROX is all about - copy and paste - lines and lines
of useless code).

- Visual Studio intelli...what? The GUI gives me bogus reactions to
what I type - and only after compilation will it then refresh what the real
syntax errors may be located at (even if there is an option to fix this,
then why is it not on by default...)

I would like to know if Microsoft or any other vendor is trying to make
ASP .Net Custom Control development a much easier task than what it is
today. What happened to Click-Drag and Drop? I want to create a DLL like I
used to be able to do so using VB. And no, I don't want to conform with
just creating User Custom User Web Form Controls (ascx), but rather true
custom controls that get compiled to DLLs.

Anybody has some insight about new IDEs that may attempt to ease up the
development of custom ASP.NET controls?

Thank you,

Pete
Nov 18 '05 #1
1 1855
1. It gets better in .NET 2.0.
2. For more power, you often take a step back to go forward
3. Much of your complaint is your heavy understanding of COM and not of .NET

Yes, it is a bit of a pain, but, realistically, ActiveX was a pain, as well.
The pains were just different types of pains and you are not used to this
pain.

Now, depending on what you are using controls for, there are ways around the
pain. User controls are easier to code than server controls. The problem is
they do not render in the IDE. For elements repeated on each page, both will
do. In .NET 2.0, you will have master pages, which further simplify this
model.

Books: Wrox is dead. The MSPress books are actually fairly decent, esp.
compared to old MS Press books. The APress stuff is a bit too specific. Many
try to write ASP in ASP.NET. Yuck! The free material on the MSDN site is
fairly decent, including free downloads of a variety of books. The
www.asp.net site is written by some really good guys at Microsoft, many of
whom used to write for Wrox. ;->

The biggest issue I had, coming from VB COM and ASP, was making the paradigm
shift. Now, I hate having to go back to legacy COM work.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** *************** *************** ***
Think Outside the Box!
*************** *************** *************** ***
"JS" <sh*****@hotmai l.com> wrote in message
news:e4******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am using ASP .Net to create my own web controls and I have noticed that there is one too many requirements that forces the developer to be aware of and get involved with. In the past the developer could choose between using VC++ and/or VB to create active X controls which primarily only required for the developer to focus on the logic of the code behind of what the control
needed to accomplished. The new Visual Studio .Net does leave a lot to
desire from what the old Visual Studio 6.0 allowed to do. Now I have to:

- Render the control (Studio 6.0 allowed for me to just drag the look and feel that I wanted): Is this a something that Microsoft did not have the
time to think of? Or have they just decided that the world needs more
developers ... What happened to the concept of ZERO Coding? What happened
to the fact that the business analysts will be able to compose Software
applications together?

- There are one too many Interfaces and idiosyncrasies that makes it a
tougher element to learn - To begin with the books out there are very poor
(actually one of the best websites I found was www.asp.net - which you would think would carry least clear content) - Microsoft Press books are faulty
and WROX (you know what WROX is all about - copy and paste - lines and lines of useless code).

- Visual Studio intelli...what? The GUI gives me bogus reactions to
what I type - and only after compilation will it then refresh what the real syntax errors may be located at (even if there is an option to fix this,
then why is it not on by default...)

I would like to know if Microsoft or any other vendor is trying to make
ASP .Net Custom Control development a much easier task than what it is
today. What happened to Click-Drag and Drop? I want to create a DLL like I used to be able to do so using VB. And no, I don't want to conform with
just creating User Custom User Web Form Controls (ascx), but rather true
custom controls that get compiled to DLLs.

Anybody has some insight about new IDEs that may attempt to ease up the
development of custom ASP.NET controls?

Thank you,

Pete

Nov 18 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
1892
by: Randy Dietz | last post by:
Hi, how can I create a simple non-UI dll or component which will be used by MS Access and .ASP apps which I can build with Visual C++ .net? An example or template which would allow me to paste in C code without learning all the C++ details would be perfect. Thanks, Randy
2
15754
by: brazilnut | last post by:
Hi. Let me explain the setup. I am using Visual Studio .NET to develop a sort of add-in (COM class) for Excel called SQLAddin. It basically queries a SQL server and pulls in data. Now within my Visual Studio Project, the SQLAddin references a compiled COM object built with Visual Studio 6.0 called SQLOld.dll. When I complie the project I get the...
0
1913
by: Craig | last post by:
I am having problems getting an ActiveX DLL written in VB6 to call a method in a C# class library component. My C# DLL is called CSharpProject.dll and contains a public class called CSharpClass. In this class is a single public method that returns the string "Hello from C sharp". My VB6 ActiveX DLL references the C# DLL...
3
4720
by: mariantrygg | last post by:
How do I know which version of MSJET40.dll is currently being used by Access on my PC? and can I distribute an older version and still expect it to work? If not, can I go back to an older version on my PC so that I can distribute with the older version which used to work? My app is crashing when running some parts, (it runs OK until one...
0
4398
by: ann | last post by:
Hi, I am trying to add an ActiveX control on my ASP.NET web form (the language for code behind is C#). I have some client-side vbscript to handle events from the html input buttons. In the client-side script, I am calling the ActiveX control object to perform some job. The problem is: when I run the application and click on the button...
1
1023
by: Alejandro K. | last post by:
Well i been trying to use the MsComm control in one of my projects, and in my developing machine ( have both .Net and VS 6 ) i can use the ActiveX freely with no problems. The problem starts when i try to run the application on the Clients machine... it gives me an error of "License Not Found" for the ActiveX control... the control is...
4
2506
by: Henrik Dahl | last post by:
Hello! Is it possible to use Visual Studio 2005 or, secondarily, Visual Studio .NET 2003 to create ActiveX controls which may be consumed by VB 6.0 programs, i.e. dealt with on forms in the usual way? If yes, may you provide a hint/link for getting started? Best regards,
0
2084
by: vml | last post by:
Hello, I am trying to mograte from vb 6 to python. I have a very usefull AX control. It can be : -just a bitmap -an active picture where you can plot data and put cursors -a data explorer Those 3 behavior are driven by one property in visual studio when you
5
1883
by: incrediblesuperdude | last post by:
Hi everybody, I have a problem with a bug in the sp1 of .Net 2.0 which is reported on this page: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx... Because of this a program I am using is not functioning well because of it: mscorlib.dll 2.0.50727.832 on the system without the service pack is
0
7912
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8338
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7959
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
8216
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6614
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5390
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3837
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
2345
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.