sorry forgot to tell you i am using .net 2003
abu sultan
Posts
-
publishing a project -
publishing a projectthanks four your prompt response ! answers: No Yes *.aspx, global, webconfig, assemply, Bin(*.dll) yes regards
-
publishing a projecthi, i have just done with a simple project and i have an ftp account to upload the project. i uploaded it already but it seems dosn't work. is there another way to publish my project. please advice ?
-
I can't update the data baseyes dear i am using MS Access !!
-
intranetthanx alot asim , but i tried your answers before posting my problem .. but it dosn't work dude. maybe i have to try somthing else .. do you have any idea ?
-
intranethi all, i am facing a problem and i need ur help guys part 1: In a local network , am developing asp.net pages on a client computer .. if i want everyone to access these pages without moving them to the server. part 2: if i'd like to move them to the server the software(vs.net) should be installed on the server. regards, Abu-Sultan
-
database still not affectedhi all, many thanx to you guys .. ur really doin a great job but my problem still accours .. i have no error messages against execution but the database not affected anything after this command (dbcommand.ExecuteNonQuery()) is ignored i don't know why?!! here is the code .. Private Sub addbtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles addbtn.Click Dim conn As New OleDb.OleDbConnection("provider=microsoft.jet.oledb.4.0; data source=" + Server.MapPath("mydatabase.mdb")) conn.Open() Try Dim sql As String sql = "insert into table1(column1,column2) values ('" & txt1.Text & "','" & txt2.Text & "') " Dim dbcommand As New OleDb.OleDbCommand(sql, conn) dbcommand.ExecuteNonQuery() Catch ex As Exception End Try conn.Close() End Sub anyone could help me with this plz.
-
I can't update the data basei beleive i am using the right code .. but nothing happens to the database when i am insert or update or delete only select statement running. ********CODE******* conn.open() sql="insert into table values("","")" dbcommand(sql, conn) dbcommand.ExecuteNonQuery() conn.close() *******************