473,387 Members | 3,750 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

asp.net and sql server

how to connection sql server table with aspx like pulling data from table to
grid view.... simple example to start ....
thanks
May 31 '06 #1
10 2068
On "Microsoft Visual Studio 2005 Documentation" look for:

Visual Web Developer
Walkthrough: Basic Data Access in Web Pages

<Harvey Triana />
"amjad" <am***@discussions.microsoft.com> escribió en el mensaje
news:CF**********************************@microsof t.com...
how to connection sql server table with aspx like pulling data from table
to
grid view.... simple example to start ....
thanks

May 31 '06 #2
See if this helps and gets you started..

http://www.netomatix.com/DataGridSeries.aspx
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
how to connection sql server table with aspx like pulling data from table
to
grid view.... simple example to start ....
thanks

May 31 '06 #3
For SQL Server 2000 / ASP.NET 1.1 :

http://samples.gotdotnet.com/quickstart/aspplus/

For SQL Server 2005 / ASP.NET 2.0 :

http://asp.net/QuickStart/aspnet/doc/data/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
how to connection sql server table with aspx like pulling data from table to
grid view.... simple example to start ....
thanks

May 31 '06 #4
I have used the link below and try to run the example
"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
but it giving me the error i dont have any idea whats wrong seem to be olrite
but still got error my sqlserver is on ip 10.0.0.2
here is the connection string
SqlConnection myConnection = new
SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
myConnection);

DataSet ds = new DataSet();
myCommand.Fill(ds, "Authors");

MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
any one has any idea whats wrong thanks
"Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :

http://samples.gotdotnet.com/quickstart/aspplus/

For SQL Server 2005 / ASP.NET 2.0 :

http://asp.net/QuickStart/aspnet/doc/data/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
how to connection sql server table with aspx like pulling data from table to
grid view.... simple example to start ....
thanks


Jun 1 '06 #5
You haven't opened the connection anywhere.
amjad wrote:
I have used the link below and try to run the example
"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
but it giving me the error i dont have any idea whats wrong seem to be olrite
but still got error my sqlserver is on ip 10.0.0.2
here is the connection string
SqlConnection myConnection = new
SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
myConnection);

DataSet ds = new DataSet();
myCommand.Fill(ds, "Authors");

MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
any one has any idea whats wrong thanks
"Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :

http://samples.gotdotnet.com/quickstart/aspplus/

For SQL Server 2005 / ASP.NET 2.0 :

http://asp.net/QuickStart/aspnet/doc/data/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
how to connection sql server table with aspx like pulling data from table to
grid view.... simple example to start ....
thanks


Jun 1 '06 #6
re:
but still got error my sqlserver is on ip 10.0.0.2
("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");
Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?
If so, use the SQL Server's instance name, not the IP, in the connection.

SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");
or
SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");
( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )

or
SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");

If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...I have used the link below and try to run the example
"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
but it giving me the error i dont have any idea whats wrong seem to be olrite
but still got error my sqlserver is on ip 10.0.0.2
here is the connection string
SqlConnection myConnection = new
SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
myConnection);

DataSet ds = new DataSet();
myCommand.Fill(ds, "Authors");

MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
any one has any idea whats wrong thanks
"Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :

http://samples.gotdotnet.com/quickstart/aspplus/

For SQL Server 2005 / ASP.NET 2.0 :

http://asp.net/QuickStart/aspnet/doc/data/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
> how to connection sql server table with aspx like pulling data from table to
> grid view.... simple example to start ....
> thanks


Jun 1 '06 #7
forget to mention tat i am using sql server 2005

"Juan T. Llibre" wrote:
re:
but still got error my sqlserver is on ip 10.0.0.2
("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");


Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?
If so, use the SQL Server's instance name, not the IP, in the connection.

SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");
or
SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");
( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )

or
SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");

If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...
I have used the link below and try to run the example
"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
but it giving me the error i dont have any idea whats wrong seem to be olrite
but still got error my sqlserver is on ip 10.0.0.2
here is the connection string
SqlConnection myConnection = new
SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
myConnection);

DataSet ds = new DataSet();
myCommand.Fill(ds, "Authors");

MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
any one has any idea whats wrong thanks
"Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :

http://samples.gotdotnet.com/quickstart/aspplus/

For SQL Server 2005 / ASP.NET 2.0 :

http://asp.net/QuickStart/aspnet/doc/data/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com...
> how to connection sql server table with aspx like pulling data from table to
> grid view.... simple example to start ....
> thanks


Jun 1 '06 #8
You also forgot to say whether the SQL Server 2005
is on the same computer as your web server.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
forget to mention tat i am using sql server 2005

"Juan T. Llibre" wrote:
re:
> but still got error my sqlserver is on ip 10.0.0.2
> ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");


Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?
If so, use the SQL Server's instance name, not the IP, in the connection.

SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");
or
SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");
( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )

or
SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");

If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...
>I have used the link below and try to run the example
> "http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
> but it giving me the error i dont have any idea whats wrong seem to be olrite
> but still got error my sqlserver is on ip 10.0.0.2
> here is the connection string
> SqlConnection myConnection = new
> SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
> SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
> myConnection);
>
> DataSet ds = new DataSet();
> myCommand.Fill(ds, "Authors");
>
> MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
> MyDataGrid.DataBind();
> any one has any idea whats wrong thanks
> "Juan T. Llibre" wrote:
>
>> For SQL Server 2000 / ASP.NET 1.1 :
>>
>> http://samples.gotdotnet.com/quickstart/aspplus/
>>
>> For SQL Server 2005 / ASP.NET 2.0 :
>>
>> http://asp.net/QuickStart/aspnet/doc/data/default.aspx
>>
>>
>>
>>
>> Juan T. Llibre, asp.net MVP
>> aspnetfaq.com : http://www.aspnetfaq.com/
>> asp.net faq : http://asp.net.do/faq/
>> foros de asp.net, en español : http://asp.net.do/foros/
>> ===================================
>> "amjad" <am***@discussions.microsoft.com> wrote in message
>> news:CF**********************************@microsof t.com...
>> > how to connection sql server table with aspx like pulling data from table to
>> > grid view.... simple example to start ....
>> > thanks
>>
>>
>>


Jun 1 '06 #9
You're going to run into problems if you want to use SQL Server 2005
to run the .Net Framework SDK 1.1 data access examples.

1. You need the Pubs database. Is it installed ?

After you've downloaded and installed SQL Server 2005 Express,
if you want to install the sample Pubs and Northwind databases,
double-click the .msi version of the file from the following link:

http://www.microsoft.com/downloads/d...displaylang=en

This installs two T-SQL scripts that you must run to build the databases.

You can use either the built-in SQLCMD command line tool or you can use
Query Editor from SQL Server Management Studio.

The following two command examples let you use SQLCMD
to install the sample databases to the local system:

SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instpubs.sq l"
SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instnwnd.sq l"

SQL Server Management Studio is available at :
http://www.microsoft.com/downloads/d...displaylang=en

Microsoft also provides a free SQL Server Express Utility-SSEUtil.

This downloadable tool lets you list all installed instances of SQL Server Express;
connect to an instance; and create, attach, and detach databases as well as execute
SQL statements. Check out SSEUtil at:

http://www.microsoft.com/downloads/d...laylang=enMake sure you bookmark this page :http://www.connectionstrings.com/Click on the SQL Server 2005 icon and then on the Sql Connection (.Net ) iconfor a bunch of connection strings for SQL Server Express 2005.Which one is the right one depends on your setup and what you want to do.Good luck!Juan T. Llibre, asp.net MVPaspnetfaq.com : http://www.aspnetfaq.com/asp.net faq : http://asp.net.do/faq/foros de asp.net, en español : http://asp.net.do/foros/==================================="amjad" <am***@discussions.microsoft.com> wrote in messagenews:FB**********************************@m icrosoft.com...> forget to mention tat i am using sql server 2005>> "Juan T. Llibre" wrote:>>> re:>> > but still got error my sqlserver is on ip 10.0.0.2>> > ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");>>>> Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?>> If so, use the SQL Server's instance name, not the IP, in the connection.>>>> SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");>> or>> SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");>> ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )>>>> or>> SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");>>>> If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.>>>>>>>>>> Juan T. Llibre, asp.net MVP>> aspnetfaq.com : http://www.aspnetfaq.com/>> asp.net faq : http://asp.net.do/faq/>> foros de asp.net, en español : http://asp.net.do/foros/>> ===================================>> "amjad" <am***@discussions.microsoft.com> wrote in message>> news:80**********************************@microsof t.com...>> >I have used the link below and try to run the example>> >"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3">> > but it giving me the error i dont have any idea whats wrong seem to be olrite>> > but still got error my sqlserver is on ip 10.0.0.2>> > here is the connection string>> > SqlConnection myConnection = new>> > SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");>> > SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",>> > myConnection);>> >>> > DataSet ds = new DataSet();>> > myCommand.Fill(ds, "Authors");>> >>> > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;>> > MyDataGrid.DataBind();>> > any one has any idea whats wrong thanks>> > "Juan T. Llibre" wrote:>> >>> >> For SQL Server 2000 / ASP.NET 1.1 :>> >>>> >> http://samples.gotdotnet.com/quickstart/aspplus/>> >>>> >> For SQL Server 2005 / ASP.NET 2.0 :>> >>>> >> http://asp.net/QuickStart/aspnet/doc/data/default.aspx>> >>>> >>>> >>>> >>>> >> Juan T. Llibre, asp.net MVP>> >> aspnetfaq.com : http://www.aspnetfaq.com/>> >> asp.net faq : http://asp.net.do/faq/>> >> foros de asp.net, en español : http://asp.net.do/foros/>> >> ===================================>> >> "amjad" <am***@discussions.microsoft.com> wrote in message>> >> news:CF**********************************@microsof t.com...>> >> > how to connection sql server table with aspx like pulling data from table to>> >> > grid view.... simple example to start ....>> >> > thanks>> >>>> >>>> >>>>>>>>

Jun 1 '06 #10
My webserver is on different server and sql server 2005 is on different
server ..i am not using sql express 2005 instead full sql server 2005..
thanks

"Juan T. Llibre" wrote:
You're going to run into problems if you want to use SQL Server 2005
to run the .Net Framework SDK 1.1 data access examples.

1. You need the Pubs database. Is it installed ?

After you've downloaded and installed SQL Server 2005 Express,
if you want to install the sample Pubs and Northwind databases,
double-click the .msi version of the file from the following link:

http://www.microsoft.com/downloads/d...displaylang=en

This installs two T-SQL scripts that you must run to build the databases.

You can use either the built-in SQLCMD command line tool or you can use
Query Editor from SQL Server Management Studio.

The following two command examples let you use SQLCMD
to install the sample databases to the local system:

SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instpubs.sq l"
SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instnwnd.sq l"

SQL Server Management Studio is available at :
http://www.microsoft.com/downloads/d...displaylang=en

Microsoft also provides a free SQL Server Express Utility-SSEUtil.

This downloadable tool lets you list all installed instances of SQL Server Express;
connect to an instance; and create, attach, and detach databases as well as execute
SQL statements. Check out SSEUtil at:

http://www.microsoft.com/downloads/d...laylang=enMake sure you bookmark this page :http://www.connectionstrings.com/Click on the SQL Server 2005 icon and then on the Sql Connection (.Net ) iconfor a bunch of connection strings for SQL Server Express 2005.Which one is the right one depends on your setup and what you want to do.Good luck!Juan T. Llibre, asp.net MVPaspnetfaq.com : http://www.aspnetfaq.com/asp.net faq : http://asp.net.do/faq/foros de asp.net, en español : http://asp.net.do/foros/==================================="amjad" <am***@discussions.microsoft.com> wrote in messagenews:FB**********************************@m icrosoft.com...> forget to mention tat i am using sql server 2005>> "Juan T. Llibre" wrote:>>> re:>> > but still got error my sqlserver is on ip 10.0.0.2>> > ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");>>>> Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?>> If so, use the SQL Server's instance name, not the IP, in the connection.>>>> SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");>> or>> SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");>> ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )>>>> or>> SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");>>>> If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.>>>>>>>>>> Juan T. Llibre, asp.net MVP>> aspnetfaq.com : http://www.aspnetfaq.com/>> asp.net faq : http://asp.net.do/faq/>> foros de asp.net, en español : http://asp.net.do/foros/>> ===================================>> "amjad" <am***@discussions.microsoft.com> wrote in message>> news:80**********************************@microsof t.com...>> >I have used the link below and try to run the example>>"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3">> > but it giving me the error i dont have any idea whats wrong seem to be olrite>> > but still got error my sqlserver is on ip 10.0.0.2>> > here is the connection string>> > SqlConnection myConnection = new>> > SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");>> > SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",>> > myConnection);>> >>> > DataSet ds = new DataSet();>> > myCommand.Fill(ds, "Authors");>> >>> > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;>> > MyDataGrid.DataBind();>> > any one has any idea whats wrong thanks>> > "Juan T. Llibre" wrote:>> >>> >> For SQL Server 2000 / ASP.NET 1.1 :>> >>>> >> http://samples.gotdotnet.com/quickstart/aspplus/>> >>>> >> For SQL Server 2005 / ASP.NET 2.0 :>> >>>> >> http://asp.net/QuickStart/aspnet/doc/data/default.aspx>> >>>> >>>> >>>> >>>> >> Juan T. Llibre, asp.net MVP>> >> aspnetfaq.com : http://www.aspnetfaq.com/>> >> asp.net faq : http://asp.net.do/faq/>> >> foros de asp.net, en español : http://asp.net.do/foros/>> >> ===================================>> >> "amjad" <am***@discussions.microsoft.com> wrote in message>> >> news:CF**********************************@microsof t.com...>> >> > how to connection sql server table with aspx like pulling data from table to>> >> > grid view.... simple example to start ....>> >> > thanks>> >>>> >>>> >>>>>>>>

Jun 1 '06 #11

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

Similar topics

2
by: Phil | last post by:
I am using a Pascal like language (Wealth-Lab) on W2K and call this server: class HelloWorld: _reg_clsid_ = "{4E797C6A-5969-402F-8101-9C95453CF8F6}" _reg_desc_ = "Python Test COM Server"...
6
by: Nathan Sokalski | last post by:
I want to set up SQL Server on Windows XP Pro so that I can use the database capabilities of ASP and IIS. I am probably using some incorrect settings, but I am not sure what they are. Here is what...
9
by: Grim Reaper | last post by:
My work let me put SQL Server 7.0 Enterprise Edition on my laptop. I have never setup a server from the beginning, so I am a little new at creating server groups. Alright, I am trying to create...
0
by: Chris Halcrow | last post by:
Hi I've spent ALL DAY trying to re-install SQL Server 2000 on Windows XP. I continually get the error 'cannot configure server' just at the end of the installation. I've tried the following: ...
0
by: Zorba.GR | last post by:
IBM DB2 Connect Enterprise Edition v8.2, other IBM DB2 (32 bit, 64 bit) (MULTiOS, Windows, Linux, Solaris), IBM iSoft Commerce Suite Server Enterprise v3.2.01, IBM Tivoli Storage Resource Manager...
2
by: Hazzard | last post by:
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the client side, I lose the new value of the textbox when...
2
by: Mike | last post by:
Hi, I am strugling with a simple problem which I can't seem to resolve. I have an asp.net page which contains a server-control (flytreeview, which is a kind of a tree to be exact). The tree is...
2
by: Jobs | last post by:
Download the JAVA , .NET and SQL Server interview with answers Download the JAVA , .NET and SQL Server interview sheet and rate yourself. This will help you judge yourself are you really worth of...
14
by: Developer | last post by:
Hello All, i have recently installed VS2005 and was trying to install SQL sever 2000. I have Win XP' SP2. But when I tried installing, it only installed client tools and not the database. Can...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...

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.