Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #37.0K
~2K People Reached

4 Posted Topics

Member Avatar for Naters_uk
Member Avatar for cjoyce

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 …

Member Avatar for Phasma
0
397
Member Avatar for erum

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

Member Avatar for erum
0
225
Member Avatar for kieky

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

Member Avatar for kuracha
0
70

The End.