Click here to Skip to main content
15,915,172 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Issues on the IIS Deployment on an ASP.NET 4.5 Pin
jkirkerx21-Aug-14 10:03
professionaljkirkerx21-Aug-14 10:03 
GeneralRe: Issues on the IIS Deployment on an ASP.NET 4.5 Pin
Vimalsoft(Pty) Ltd21-Aug-14 10:27
professionalVimalsoft(Pty) Ltd21-Aug-14 10:27 
QuestionString compare Pin
byka20-Aug-14 8:01
byka20-Aug-14 8:01 
AnswerRe: String compare Pin
Richard Deeming20-Aug-14 9:14
mveRichard Deeming20-Aug-14 9:14 
AnswerRe: String compare Pin
Snehasish_Nandy21-Aug-14 0:57
professionalSnehasish_Nandy21-Aug-14 0:57 
AnswerRe: String compare Pin
Sibeesh KV29-Sep-14 1:29
professionalSibeesh KV29-Sep-14 1:29 
Questionasp.net ValidatorCalloutExtender unhandled exception error Pin
murali_utr20-Aug-14 3:00
murali_utr20-Aug-14 3:00 
AnswerRe: asp.net ValidatorCalloutExtender unhandled exception error Pin
Richard MacCutchan20-Aug-14 3:11
mveRichard MacCutchan20-Aug-14 3:11 
GeneralRe: asp.net ValidatorCalloutExtender unhandled exception error Pin
murali_utr20-Aug-14 3:32
murali_utr20-Aug-14 3:32 
GeneralRe: asp.net ValidatorCalloutExtender unhandled exception error Pin
Richard MacCutchan20-Aug-14 3:40
mveRichard MacCutchan20-Aug-14 3:40 
GeneralRe: asp.net ValidatorCalloutExtender unhandled exception error Pin
murali_utr20-Aug-14 4:19
murali_utr20-Aug-14 4:19 
Questiondisappearing cookies Pin
Ali Al Omairi(Abu AlHassan)18-Aug-14 2:13
professionalAli Al Omairi(Abu AlHassan)18-Aug-14 2:13 
SuggestionRe: disappearing cookies Pin
ZurdoDev18-Aug-14 8:33
professionalZurdoDev18-Aug-14 8:33 
GeneralRe: disappearing cookies Pin
Ali Al Omairi(Abu AlHassan)18-Aug-14 21:01
professionalAli Al Omairi(Abu AlHassan)18-Aug-14 21:01 
QuestionCompare 2 tables Pin
byka18-Aug-14 1:56
byka18-Aug-14 1:56 
QuestionRe: Compare 2 tables Pin
ZurdoDev18-Aug-14 8:32
professionalZurdoDev18-Aug-14 8:32 
AnswerRe: Compare 2 tables Pin
Andy_L_J28-Aug-14 0:38
Andy_L_J28-Aug-14 0:38 
QuestionDownloading multiple pdf files in a Zip is not working Pin
Member 1048246516-Aug-14 2:19
Member 1048246516-Aug-14 2:19 
AnswerRe: Downloading multiple pdf files in a Zip is not working Pin
Afzaal Ahmad Zeeshan17-Aug-14 2:43
professionalAfzaal Ahmad Zeeshan17-Aug-14 2:43 
GeneralRe: Downloading multiple pdf files in a Zip is not working Pin
Member 1048246518-Aug-14 2:36
Member 1048246518-Aug-14 2:36 
GeneralRe: Downloading multiple pdf files in a Zip is not working Pin
Member 1048246518-Aug-14 2:45
Member 1048246518-Aug-14 2:45 
Questionscrape table from web page Pin
Mahmoud198716-Aug-14 1:41
Mahmoud198716-Aug-14 1:41 
QuestionSyntax error near INSERT INTO Pin
Otekpo Emmanuel15-Aug-14 23:05
Otekpo Emmanuel15-Aug-14 23:05 
<pre><code>Imports System.Data
Imports System.Data.OleDb

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim con As OleDbConnection
Dim cmd As OleDbCommand
con = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=C:\Users\db.mdb")
con.Open()
Dim insert As String = "insert into tbl1(names) values(@names)"

cmd = New OleDbCommand(insert, con)
cmd.Parameters.AddWithValue("@names", "Jacob")
cmd.ExecuteReader()

cmd.Dispose()
con.Dispose()
con.Close()

End Sub
End Class
</pre></code>

I'm trying to insert record into microsoft access database using the above code in asp.net. But the error specified above occurred and my connection string is ok. When i used same code in windows application, it works fine. Please help.
AnswerRe: Syntax error near INSERT INTO Pin
Wombaticus15-Aug-14 23:21
Wombaticus15-Aug-14 23:21 
GeneralSolved: Syntax error near INSERT INTO Pin
Otekpo Emmanuel16-Aug-14 3:17
Otekpo Emmanuel16-Aug-14 3:17 

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.