Click here to Skip to main content
15,911,142 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Gridview, EditItem template as DropDownList ... how do I get update working properly? Pin
minhpc_bk31-Jan-07 5:02
minhpc_bk31-Jan-07 5:02 
QuestionReceiving script error when i access the ClientID of items in Repeater control through javascript Pin
priyavu31-Jan-07 0:37
priyavu31-Jan-07 0:37 
AnswerRe: Receiving script error when i access the ClientID of items in Repeater control through javascript Pin
Guffa31-Jan-07 1:51
Guffa31-Jan-07 1:51 
GeneralRight answer is there Re: Receiving script error when i access the ClientID of items in Repeater control through javascript Pin
Sylvester george31-Jan-07 2:02
Sylvester george31-Jan-07 2:02 
QuestionHow to bring the Ms-Access DB record to a DropdownList? Pin
Praveen 12331-Jan-07 0:31
Praveen 12331-Jan-07 0:31 
AnswerRe: How to bring the Ms-Access DB record to a DropdownList? Pin
krishnakumark31-Jan-07 1:45
krishnakumark31-Jan-07 1:45 
QuestionRe: How to bring the Ms-Access DB record to a DropdownList? [modified] Pin
Praveen 12331-Jan-07 17:04
Praveen 12331-Jan-07 17:04 
AnswerRe: How to bring the Ms-Access DB record to a DropdownList? Pin
krishnakumark31-Jan-07 19:27
krishnakumark31-Jan-07 19:27 
Hi it should look similer to this.. i tried here.. its working fine...did you remove the statement DBReader.Close() ?????

Dim DBConnection As System.Data.OleDb.OleDbConnection
Dim DBCommand As System.Data.OleDb.OleDbCommand
Dim DBReader As System.Data.OleDb.OleDbDataReader

Dim SQLString As String
Dim DataSet1 As System.Data.DataSet
If Not Page.IsPostBack Then
DBConnection = New System.Data.OleDb.OleDbConnection( _
"put your connection string here")
DBConnection.Open()
DBCommand = New OleDb.OleDbCommand("select email from users", DBConnection)
OleDbDataAdapter1.SelectCommand = DBCommand
DataSet1 = New DataSet
OleDbDataAdapter1.Fill(DataSet1, "Attendance_Details")
DropDownList1.DataSource = DataSet1.Tables("Attendance_Details")
DropDownList1.DataValueField = "email"
DropDownList1.DataBind()

DBConnection.Close()
End If

Kk

GeneralRe: How to bring the Ms-Access DB record to a DropdownList? Pin
Praveen 12331-Jan-07 23:31
Praveen 12331-Jan-07 23:31 
QuestionCrystal Report in ASP.NET 2.0 (VB) Pin
varshavmane31-Jan-07 0:12
varshavmane31-Jan-07 0:12 
QuestionAdd a extra row to a datagrid which you can edit an bind Pin
peggy70630-Jan-07 23:31
peggy70630-Jan-07 23:31 
QuestionDynamically hide column in Repeater control Pin
Atul Kharecha30-Jan-07 23:21
Atul Kharecha30-Jan-07 23:21 
AnswerRe: Dynamically hide column in Repeater control Pin
minhpc_bk31-Jan-07 4:56
minhpc_bk31-Jan-07 4:56 
QuestionCrystal Reports in asp.net Pin
Kissy1630-Jan-07 22:06
Kissy1630-Jan-07 22:06 
AnswerRe: Crystal Reports in asp.net Pin
Sylvester george30-Jan-07 22:52
Sylvester george30-Jan-07 22:52 
Questionhow can insert an image path using formview control Pin
chohanpk30-Jan-07 21:13
chohanpk30-Jan-07 21:13 
AnswerRe: how can insert an image path using formview control Pin
minhpc_bk31-Jan-07 4:54
minhpc_bk31-Jan-07 4:54 
QuestionASP.Net Pin
Amit.Amit.Amit...30-Jan-07 21:11
Amit.Amit.Amit...30-Jan-07 21:11 
AnswerRe: ASP.Net Pin
Sandeep Akhare30-Jan-07 23:19
Sandeep Akhare30-Jan-07 23:19 
AnswerRe: ASP.Net Pin
MohammadYousef31-Jan-07 3:49
MohammadYousef31-Jan-07 3:49 
Questionerror in textbox and table Pin
sanaziuse30-Jan-07 21:01
sanaziuse30-Jan-07 21:01 
AnswerRe: error in textbox and table Pin
Sandeep Akhare30-Jan-07 23:15
Sandeep Akhare30-Jan-07 23:15 
GeneralRe: error in textbox and table Pin
sanaziuse31-Jan-07 0:45
sanaziuse31-Jan-07 0:45 
GeneralRe: error in textbox and table Pin
Venkatesh Mookkan31-Jan-07 2:25
Venkatesh Mookkan31-Jan-07 2:25 
GeneralRe: error in textbox and table Pin
sanaziuse31-Jan-07 4:30
sanaziuse31-Jan-07 4:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.