473,653 Members | 3,000 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Binding

Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind that
information directly, or does it have to go into a database first?
Jul 7 '07 #1
7 1647
On Jul 7, 6:16 am, "dancer" <dan...@microso ft.comwrote:
Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind that
information directly, or does it have to go into a database first?
Hi,

"Can I bind that information directly"...
Bind information where...
where is the data...?
and where you want to bind?

Thanks
Munna
www.kaz.com.bd
http://munnacs.110mb.com

Jul 7 '07 #2
On Fri, 6 Jul 2007 20:16:33 -0400, "dancer" <da****@microso ft.com>
wrote:
>Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind that
information directly, or does it have to go into a database first?
You can bind it from an XML source or even from literal constansts. For
instance if you put the data into an ArrayList or a List<Tyou can bind
that.

But why would you NOT get it from a database?
Jul 7 '07 #3
"dancer" <da****@microso ft.comwrote in message
news:Oe******** ******@TK2MSFTN GP05.phx.gbl...
Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind
that information directly, or does it have to go into a database first?
As others have said, yes you can, but why make all that extra work for
yourself...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 7 '07 #4
A person will be filling in information on a form.
When I bind from a database, the information appears in columns and rows.
Do I send the information that the person fills in to a database first, and
then retrieve it to have it in colums and rows, or do I bind it from the
variables of the form without going to a database?
Maybe I don't know exactly what binding is. It seemed a simple way to get
info into a grid. ???


"mark4asp" <ma******@gmail .comwrote in message
news:cv******** *************** *********@4ax.c om...
On Fri, 6 Jul 2007 20:16:33 -0400, "dancer" <da****@microso ft.com>
wrote:
>>Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind
that
information directly, or does it have to go into a database first?

You can bind it from an XML source or even from literal constansts. For
instance if you put the data into an ArrayList or a List<Tyou can bind
that.

But why would you NOT get it from a database?

Jul 9 '07 #5
RE:
As others have said, yes you can, but why make all that extra work for
yourself...?
So what is the most efficient way to get information from a user input form
into a grid?

Thanks

"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:Oi******** ******@TK2MSFTN GP04.phx.gbl...
"dancer" <da****@microso ft.comwrote in message
news:Oe******** ******@TK2MSFTN GP05.phx.gbl...
>Using VB.Net and ASP.Net 1.1

I will create a form that will have maybe 20 or 30 fields. Can I bind
that information directly, or does it have to go into a database first?

As others have said, yes you can, but why make all that extra work for
yourself...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 12 '07 #6
On Jul 12, 11:13 am, "dancer" <dan...@microso ft.comwrote:
RE:
As others have said, yes you can, but why make all that extra work for
yourself...?

So what is the most efficient way to get information from a user input form
into a grid?

Thanks

"Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote in messagenews:Oi* *************@T K2MSFTNGP04.phx .gbl...
"dancer" <dan...@microso ft.comwrote in message
news:Oe******** ******@TK2MSFTN GP05.phx.gbl...
Using VB.Net and ASP.Net 1.1
I will create a form that will have maybe 20 or 30 fields. Can I bind
that information directly, or does it have to go into a database first?
As others have said, yes you can, but why make all that extra work for
yourself...?
Obviously you have to store the info somewhere, right? The form gets
bound to the database, then your datagrid gets bound the db as well.

Jul 12 '07 #7
1. I have found that when I include too much detail or more than one problem
at a time, it is too confusing. One simple question at a time seems to get
a better answer from most helpers. Sometime I am looking for a general
direction. Sometime I am looking for a specific answer to a particular
problem.

2. RE: "Or, do mean something which the user can download to their machine
and then
continue to work on? Maybe something like an Excel spreadsheet? If so,
then I would use this:
http://www.aspose.com/Products/Aspose.Cells/Default.aspx"
THIS is what I have been saying. But I don't want to buy a 3rd party
package that may or may not work and puts another possibility for problems
in the mix, as well as a learning curve. SURELY THERE IS A POSSIBILITY.

3. I have asked our hosting service to address the problem of not having
ASP.net 2.0. Meanwhile, I have to work with the limitations. I don't make
the decision of which hosting service to use.

4. I read the Welcome to the ASP.NET FAQ. I quote from there: "Please treat
all participants with respect, valuing divergent views and contrary
opinions.Be polite."

I hope you will continue to share your knowledge. I will try to be more
specific when I can.

Thank you.

"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:%2******** ********@TK2MSF TNGP06.phx.gbl. ..
"dancer" <da****@microso ft.comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..

Jul 12 '07 #8

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

Similar topics

0
2338
by: Ann Morris | last post by:
INTRODUCTION One of the most powerful aspects of .NET and Windows Forms is data binding. Data binding is the process of associating user interface (UI) elements with a data source to generate a visual representation of data. Two types of data binding are available for Windows Forms: Simple Data Binding and Complex Data Binding. Simple data binding allows you to bind one data element to a control. In many situations you want to display...
1
7930
by: JD Kronicz | last post by:
Hi .. I have an issue I have been beating my head against the wall on for some time. I am trying to use late binding for MS graph so that my end users don't have to worry about having the right version of the MS Graph type library. Up until now I have been walking them through the process of setting the references to include their version of MS Graph library. My problem is that I can not seem to get the syntax correct .. or perhaps...
9
10413
by: Zlatko Matić | last post by:
I was reading about late binding, but I'm not completely sure what is to be done in order to adjust code to late binding... For example, I'm not sure if this is correct: early binding: Dim ws As DAO.Workspace Dim db As DAO.Database Dim qdf As DAO.QueryDef Dim rs As DAO.Recordset
1
2622
by: Bruce | last post by:
Hi, there, I meet a problem about comboBox binding. -------------------- Database: Northwind Tables: 1) Products 2) Categories I create a form (named "form1") to edit the record from Products table.
0
4794
by: JSantora | last post by:
Essentially, InsertAT is broken! For the past couple of hours, I've been getting this "Parameter name: '-2147483550' is not a valid value for 'index'." error. Apparently, its caused by having manually inserted a row in the table bound to the Combo box. The InsertAt Method of adding a row just does not work. Hope this helps anyone with this problem. john
30
2817
by: lgbjr | last post by:
hi All, I've decided to use Options Strict ON in one of my apps and now I'm trying to fix a late binding issue. I have 5 integer arrays: dim IA1(500), IA2(500), IA3(500), IA4(500), IA5(500) as integer The integers in these arrays are actually pointers to different columns of data in a text file.
0
2326
by: Steven Bolard | last post by:
Hello, I am trying to port my .net 1.1 application to 2.0. I am using vs2005. I am trying to get my webservices to run and although i can compile them and and get wsdl and service descriptions through internet explorer when hitting the ..asmx url, i cannot generate a proxy class to use in my winforms assembly. When i try to generate a proxy, i get no error message but nor do i get a reference.vb so there is no type info. If i then try...
6
2445
by: Mikus Sleiners | last post by:
Is there any way to enable exception throws in VS 2005, that occur during binding operations? I am upset that i can't see exceptions that are thrown during binding operations. It's very hard to track down erroneous behaviour of your app if you can't see where the problem is... i mean it's realy hard to debug binding issues and it would be realy of help if i could somehow enable this during debug session.
15
3103
by: Tom Gur | last post by:
Hi, What is early/late binding ?
3
16057
ADezii
by: ADezii | last post by:
The process of verifying that an Object exists and that a specified Property or Method is valid is called Binding. There are two times when this verification process can take place: during compile time (Early Binding) or run time (Late Binding). When you declare an Object Variable as a specific Data Type, you are using Early Binding so the verification can take place during compile time. When you declare a Variable of the generic Object Data...
0
8283
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8811
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8704
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8470
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
8590
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4147
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2707
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
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.