473,503 Members | 4,234 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 1635
On Jul 7, 6:16 am, "dancer" <dan...@microsoft.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****@microsoft.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****@microsoft.comwrote in message
news:Oe**************@TK2MSFTNGP05.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.com...
On Fri, 6 Jul 2007 20:16:33 -0400, "dancer" <da****@microsoft.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**@markNOSPAMrae.netwrote in message
news:Oi**************@TK2MSFTNGP04.phx.gbl...
"dancer" <da****@microsoft.comwrote in message
news:Oe**************@TK2MSFTNGP05.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...@microsoft.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...@markNOSPAMrae.netwrote in messagenews:Oi**************@TK2MSFTNGP04.phx.gbl. ..
"dancer" <dan...@microsoft.comwrote in message
news:Oe**************@TK2MSFTNGP05.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**@markNOSPAMrae.netwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
"dancer" <da****@microsoft.comwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...

Jul 12 '07 #8

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

Similar topics

0
2318
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...
1
7913
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...
9
10391
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...
1
2613
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...
0
4778
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...
30
2786
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...
0
2295
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...
6
2429
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...
15
3083
by: Tom Gur | last post by:
Hi, What is early/late binding ?
3
16042
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...
0
7264
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,...
0
7316
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...
0
7449
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...
1
4992
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4666
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...
0
3160
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...
0
3148
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
728
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
371
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...

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.