Click here to Skip to main content
16,004,806 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Publish/upload website Pin
Not Active31-Jan-07 3:44
mentorNot Active31-Jan-07 3:44 
GeneralRe: Publish/upload website Pin
sanaziuse31-Jan-07 7:16
sanaziuse31-Jan-07 7:16 
QuestionGridview, EditItem template as DropDownList ... how do I get update working properly? Pin
Red_Wizard_Shot_The_Food31-Jan-07 3:03
Red_Wizard_Shot_The_Food31-Jan-07 3:03 
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 
the following code is for connecting a DropdownList with a Ms-access record but its not working.....Pleas help me
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( _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\Documents and Settings\All Users\Documents\Attendance\BTA_ DB_Design\BTAS.mdb")
DBConnection.Open()
DBCommand = New OleDb.OleDbCommand("SELECT Employee_ID FROM Attendance_Details", DBConnection)
OleDbDataAdapter1.SelectCommand = DBCommand
OleDbDataAdapter1.Fill(DataSet1, "Attendance_Details")
DropDownList1.DataSource = DataSet1.Tables("Attendance_Details")
DropDownList1.DataValueField = "Employee_ID"
DropDownList1.DataBind()
DBReader.Close()
DBConnection.Close()



Error:-Value cannot be null. Parameter name: dataSet

Praveen.K
System Engineer
Graviton Technologies Pvt.Ltd

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 
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 

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.