- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Naters_uk, Thanks.. I got the answer from your post!!!
try this: [CODE] Imports System.Data Imports System.Data.OleDb Partial Class _Default Inherits System.Web.UI.Page Dim con As New OleDbConnection("Connection string") Dim cmd As New OleDbCommand Dim da As New OleDbDataAdapter Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load con.Open() cmd = New OleDbCommand("select * from Table1", con) Dim …
Sorry I can' access the link you mentioned in your post! I suggest you to try the code below. I used that code in my project before and it worked fine with me.. this is asp.net using c# codes.. [CODE] try { MailMessage mail = new MailMessage(); mail.To.Add("[email protected]"); mail.From = …
I often use that code to redirect me to other pages and it worked fine with me.. I suggest you to try this one: Response.Redirect("DaftarUser.aspx")
The End.
kuracha