473,791 Members | 3,275 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Add a dataset control to a ASP.NET 2005 app

How do I add a dataset control to a ASP.NET 2005 app?

It was easy in 2003. I would just drag a control onto the form. In an
ASP.NET web project VS.2005 project the control doesnt seem to exist.

What do I do ?
Dec 20 '05 #1
4 1228
Hi Scrooge,

You can add from your solution explorer a dataset, in that you can click on
the lower part to get the connection. Than a wizard something as you was
used to see will start.

I hope this helps,

Cor
How do I add a dataset control to a ASP.NET 2005 app?

It was easy in 2003. I would just drag a control onto the form. In an
ASP.NET web project VS.2005 project the control doesnt seem to exist.

What do I do ?

Dec 20 '05 #2
no, I am talking about a dataset control not a .XSD dataset file.

I can do it by going into the component designer or something like that for
the web form

Who is Scrooge?

"Cor Ligthert [MVP]" <no************ @planet.nl> wrote in message
news:ep******** ******@TK2MSFTN GP14.phx.gbl...
Hi Scrooge,

You can add from your solution explorer a dataset, in that you can click
on the lower part to get the connection. Than a wizard something as you
was used to see will start.

I hope this helps,

Cor
How do I add a dataset control to a ASP.NET 2005 app?

It was easy in 2003. I would just drag a control onto the form. In an
ASP.NET web project VS.2005 project the control doesnt seem to exist.

What do I do ?


Dec 20 '05 #3
Did you tried what I told.

The connection is now a part from the strongly typed dataset .

If you don't want to use that, than you have to create that by hand or I
though drag a table from the Server Explorer to your page. (The last I am
not totally sure of, therefore it is to new for me as well).

I hope this helps,

Cor

"D Witherspoon" <dw**********@n oway.org> schreef in bericht
news:%2******** *******@TK2MSFT NGP15.phx.gbl.. .
no, I am talking about a dataset control not a .XSD dataset file.

I can do it by going into the component designer or something like that
for the web form

Who is Scrooge?

"Cor Ligthert [MVP]" <no************ @planet.nl> wrote in message
news:ep******** ******@TK2MSFTN GP14.phx.gbl...
Hi Scrooge,

You can add from your solution explorer a dataset, in that you can click
on the lower part to get the connection. Than a wizard something as you
was used to see will start.

I hope this helps,

Cor
How do I add a dataset control to a ASP.NET 2005 app?

It was easy in 2003. I would just drag a control onto the form. In an
ASP.NET web project VS.2005 project the control doesnt seem to exist.

What do I do ?



Dec 20 '05 #4
yes I already had the dataset created just couldnt get the control on the
form.

i don't really like the idea of having to bind the daatset to a connection
object at design time... since we like to do it all in the runtime.

especially since we don't store our connection strings on the server, and
never would we store a connection string in a web.config file. we have
another component we call that retrieves our connection strings for us in
runtime

"Cor Ligthert [MVP]" <no************ @planet.nl> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Did you tried what I told.

The connection is now a part from the strongly typed dataset .

If you don't want to use that, than you have to create that by hand or I
though drag a table from the Server Explorer to your page. (The last I am
not totally sure of, therefore it is to new for me as well).

I hope this helps,

Cor

"D Witherspoon" <dw**********@n oway.org> schreef in bericht
news:%2******** *******@TK2MSFT NGP15.phx.gbl.. .
no, I am talking about a dataset control not a .XSD dataset file.

I can do it by going into the component designer or something like that
for the web form

Who is Scrooge?

"Cor Ligthert [MVP]" <no************ @planet.nl> wrote in message
news:ep******** ******@TK2MSFTN GP14.phx.gbl...
Hi Scrooge,

You can add from your solution explorer a dataset, in that you can click
on the lower part to get the connection. Than a wizard something as you
was used to see will start.

I hope this helps,

Cor

How do I add a dataset control to a ASP.NET 2005 app?

It was easy in 2003. I would just drag a control onto the form. In an
ASP.NET web project VS.2005 project the control doesnt seem to exist.

What do I do ?



Dec 20 '05 #5

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

Similar topics

1
3234
by: Siegfried Heintze | last post by:
I'm using a third party hosting service. I presently have a Web Service on this hosting service's server that loads and executes a native mode DLL. This demonstrates that the hosting service has given me proper access to the temporary directory c:/Windows/Microsoft.NET/Framework/V1.1.4322/Temporary ASP.NET Files/root/...." I believe it also demonstrates that I have access to c:/documents and settings/xyz/aspnet/local settings/ ...
8
5103
by: GaryDean | last post by:
In an 2.0 asp app I used vs.net 2005 to create a TableAdapter:Dataset in my App_code directory. I also created a new vb class in that same directory. I have two issues: 1. I notice that there are errors in the xml code for the dataset... <TableAdapter BaseClass="system.ComponentModel.Component" DataAccessorModifier... the DataAccessorModifier is underlined as an error - if I hover over it, it says that attribute is not declared. ...
6
10905
by: Altman | last post by:
I am playing around with making a dataset with the designer in vb.net 2005. I realize you can add parameters to select statement and then filter off of those parameters. What I would like to do is to take the dataset that the designer made and add the whole where clause to it at run time. Is this possible?
3
14442
by: BartMan | last post by:
Greetings, I have a gridview which is sitting on a multi view control (witin a view), and it is bound to a dataset which I dynamically apply to the control within asp.net page. The problem is that I can't seem to resize my dataview's columns which are auto generated. Is there a way to do this? I have tried several different things, but I can't seem to get at the column collection to change the widths? MY development environment
19
19347
by: Dave | last post by:
If Iwant to check if dataset1.SelectQuery1.column1 == System.DBNull.Value. How do I do this? What I wrote above will give an error. -- L. A. Jones
0
940
by: Southcoaster | last post by:
I am relatively new to Visual Basic 2005 Express Edition. I am trying to create a simple program that: 1. Creates and populates a dataset in the form_load handler 2. Transfers control to a new form to input user changes to the data in a Button2_Click event handler 3. returns control to the Button2_Click event handler to perform the dataset update However it can’t find the data adapter ‘custDA’ to perform the update in the
1
3825
by: Angel \Java\ Lopez | last post by:
Hi people! I'm running a Visual Studio 2005, Professional, on Windows XP Professional. I've found a little big problem, reading a DataSet. If I try: ds.ReadXml("c:\data.xml") it raises the exception ONLY in Web Sites:
2
2732
by: forforumsid | last post by:
Hi all I have a Dataset name: dsMain I popullate with all the data from the database on form load event I have a requirement to filter data as per users requirement on a button click event What I want is that when the user clicks the button the program should query the Dataset table and not the database table and return the result
0
855
by: Amit31 | last post by:
I create the application in VB.Net 2005. In this whole application i used the Binding for Textbox Controls for data storing and fetching from database (SQL Server 2005). I set the buttons on Form to navigate through the records to back and forward navigation. The problem is coming that i bind the Text and Tag property of a Textbox Control to database columns. I bind the Text property to display the name and Tag property to ID column. After i...
0
9669
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10207
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
10156
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
9997
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
9030
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7537
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6776
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 into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5435
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
4110
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

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.