To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here
VBForums  

VB Wire News
Part 10 of the Visual Basic .NET 2010 Express Tutorial Complete!
How to Use the Visual Studio Code Analysis Tool FxCop
Article :: Interview with Andrei Alexandrescu (Part 3 of 3)
Introducing Visual Studio LightSwitch
Visual Studio LightSwitch Beta 1 is Available



Go Back   VBForums > .NET > ASP.NET

Reply Post New Thread
 
Thread Tools Display Modes
Old Nov 24th, 2009, 11:43 PM   #1
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Resolved [RESOLVED] Binding Drop Down List

Hi All,

I currently have two dropdown lists which are bound to a SQL DataSource. The two controls have the following properties set:
  1. AppendDataBoundItems = True
  2. AutoPostBack = False
  3. CausesValidation = True

When a Button Click Event fires, the dropdown lists default to the first value in the SQL DataSource.

I've removed the DataBinding and manually added items and upon clicking a button, the value originally selected in the dropdown list remains as is.

Below is the code I am using to bind one of the drop down lists.

VB Code:
  1. Protected Sub BindAuthorityDDL()
  2.         Me.ddlAuthority.Items.Clear()
  3.         Try
  4.             Using da As New SqlDataAdapter("SELECT Activity, TimeUnit FROM tblATU WHERE FieldName = 'ddlAuthority' ORDER BY Activity ASC", ConfigurationManager.ConnectionStrings("DEEstimatorConnectionString").ToString())
  5.                 Dim dt As New DataTable
  6.                 da.Fill(dt)
  7.                 da.Dispose()
  8.                 Me.ddlAuthority.DataSource = dt
  9.                 Me.ddlAuthority.DataTextField = "Activity"
  10.                 Me.ddlAuthority.DataValueField = "TimeUnit"
  11.                 Me.ddlAuthority.DataBind()
  12.             End Using
  13.         Catch ex As Exception
  14.         End Try
  15.     End Sub

VB Code:
  1. Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  2.         If Not Page.IsPostBack Then
  3.             BindAuthorityDDL()
  4.         End If
  5.     End Sub
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 12:44 AM   #2
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

I take it the question that you have is that you want the currently selected item in the list to remain after a postback, when you bind it to the DataSource, is that correct?

You imply that, but it is not clearly stated.

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 12:54 AM   #3
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

Quote:
Originally Posted by gep13 View Post
Hey,

I take it the question that you have is that you want the currently selected item in the list to remain after a postback, when you bind it to the DataSource, is that correct?

You imply that, but it is not clearly stated.

Gary
Hi Gary,

That would be correct.
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 01:13 AM   #4
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

With the exception of the querying of the database, I have done exactly the same thing in the following:

Code:
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not IsPostBack Then
            BindDLL()
        End If
    End Sub

    Private Sub BindDLL()
        Dim list As New List(Of String)
        list.Add("First")
        list.Add("Second")
        list.Add("Third")
        list.Add("Fourth")
        list.Add("Fifth")
        DropDownList1.DataSource = list
        DropDownList1.DataBind()
    End Sub
Code:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm3.aspx.vb" Inherits="VBWebApplication.WebForm3" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="True" CausesValidation="True">
        </asp:DropDownList>
        <asp:Button ID="Button1" runat="server" Text="Button" />
    </div>
    </form>
</body>
</html>
For sake of curiousity, can you create a new page, with just the above?

Does it work?

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 01:34 AM   #5
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Cool Re: Binding Drop Down List

Hi Gary,

I created a new .ASPX page and copied your code which resulted in the effect that I'm after.

I then changed it to bind to a SQL DataSource and the same thing is happening.
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 01:54 AM   #6
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

I have just checked an application where I have done a similar thing, and it looks like I have to manually set the SelectedValue of the DropDownList to the currently selected value on subsequent postbacks to the server. This was achieved by putting the selected value of the Drop Down List into a session variable.

What I don't know off the top of my head though is whether this was a "workaround" for me not being able to find a better solution, or whether it was the only way of achieving it.

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 02:09 AM   #7
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

Hi Gary,

After further investigation, I worked out why the Post Back is defaulting to the first item in the drop down list.

Looking at the Selected Index for the 5 Data Bound Items, there index goes as follows:

0,1,2,0,0

Why this is happening when the Data Bind occurs I have no idea.
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 02:17 AM   #8
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

Does that mean that if you select the second or the third item in the DDL that it is retained after post back, but if you select the fourth and the fifth options, you get the first item. Is that right?

Can you show the result of your query that you are executing?

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 02:23 AM   #9
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

Quote:
Originally Posted by gep13 View Post
Hey,

Does that mean that if you select the second or the third item in the DDL that it is retained after post back, but if you select the fourth and the fifth options, you get the first item. Is that right?


Gary
Hi Gary,

That is correct...

What do you mean by "Can you show the result of your query that you are executing?"
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 02:25 AM   #10
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

Can you execute the following query against SQL Server:

Code:
SELECT Activity, TimeUnit FROM tblATU WHERE FieldName = 'ddlAuthority' ORDER BY Activity ASC
And show the results that you get?

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 02:36 AM   #11
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

ACTIVITY TIMEUNIT

Better to Administer 90
Election 25
Grant on Probate 35
Letter to Administer Will Annexed 90
No Grant AAPA 90
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 02:38 AM   #12
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

So there is your answer.

90 is the same value for 1, 4 and 5, which equates to the 0's that you are seeing.

Normally, you want to make the "value" of the DDL items unique, as this is what is used to distinguish it from another item in the DDL.

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 02:44 AM   #13
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Question Re: Binding Drop Down List

If there anyway of overcoming this as some items will have the same value?
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 02:48 AM   #14
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

Not that I am aware of. Why would the entries have the same value?!?

Surely they would have to have a different value, otherwise, why are they available for selection in multiple places?!?

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 03:06 AM   #15
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

Hi Gary,

There are different types of activities to select from but some of those activities have the same value. This could change in the future.
nolim8ts is offline   Reply With Quote
Old Nov 25th, 2009, 03:57 AM   #16
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

What does the value represent though?

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Old Nov 25th, 2009, 01:27 PM   #17
mendhak
ASP.NET Moderator
 
mendhak's Avatar
 
Join Date: Feb 02
Location: Ulaan Baator GooGoo: Frog
Posts: 38,161
mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)mendhak has a brilliant future (2000+)
Re: Binding Drop Down List

You need to introduce an ATUID in your tblATU table which is unique and use that as the value in your dropdownlist. When a user selects a value, look at it and use it to get the time value out from the database.
mendhak is offline   Reply With Quote
Old Nov 25th, 2009, 11:08 PM   #18
nolim8ts
Lively Member
 
Join Date: Jan 06
Posts: 111
nolim8ts is an unknown quantity at this point (<10)
Re: Binding Drop Down List

Quote:
Originally Posted by mendhak View Post
You need to introduce an ATUID in your tblATU table which is unique and use that as the value in your dropdownlist. When a user selects a value, look at it and use it to get the time value out from the database.
Worked as suggested...
nolim8ts is offline   Reply With Quote
Old Nov 26th, 2009, 01:09 AM   #19
gep13
ASP.Nut
 
gep13's Avatar
 
Join Date: Nov 04
Location: The Granite City
Posts: 14,398
gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)gep13 is a name known to all (1000+)
Re: Binding Drop Down List

Hey,

Glad to hear that you got it worked out.

Can you remember to go back and mark your thread as resolved (there are links in my signature if you are unsure), helps keep the place tidy.

Gary
__________________
Remember to mark your thread as resolved. Check out the new Forum features, including tagging here. Remember to rate posts that help.

My Site - ASP.Net Website running on CentOS 5.3 with Mono
My Blog - Blog on Aberdeen Developers .Net User Group
View my MCP Certifications

Free Stuff: WebsiteSpark|DreamSpark|BizSpark
Learning Resources: MSDN|LearnVisualStudio|TrainingSpot|ScottGu's Blog|ASP.Net Starter Kits|Regex|RegExLib
Useful Tools: XPath Builder|UltraMon|RegExBuddy|CopySourceAsHtml|TracExplorer|SQLyog|Chart Controls for .Net|SharePoint Designer|CodeRush Express
Coding Links: XPath|ConnectionStrings|VB and MySQL|MySQL Connector.Net|My.Settings
ADO.Net: MSDN Reference|Introduction|Using Access|Always use Parameters|Save and Retrieve Data - jm|An Explanation - jm
Code Bank Submissions: Code Snippets|Profile Provider|Serialization: C# VB|Restricted Menu|Compressed HttpWebRequest|Enumerate and Add Internet Explorer Favourites: VB C#|C# Tabbed Web Browser|Enhanced Tabbed Web Browser: VB C#
gep13 is online now   Reply With Quote
Reply

Go Back   VBForums > .NET > ASP.NET


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 05:42 AM.





Acceptable Use Policy

Internet.com
The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.