- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Looking for You tube clone?? I found this script totally customisable for asp.net <URLs SNIPPED>
Thats due to permanent cookie written in your system by that website. It is written permanently when you tick check box for "Remember me on this computer". To get rid of this, just delet cookies from your system from internet explorer. [url]http://www.cosmicwebservices.com/Login.aspx[/url]
[code] Imports System Imports System.Data Imports System.Data.SqlClient Imports System.Configuration Imports System.Web.Security Imports System.Web.SessionState Partial Class Edit Inherits System.Web.UI.Page Protected Sub btnUpdate_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpdate.Click Dim objCommand As New SqlCommand() objConnection.ConnectionString = ConfigurationManager.ConnectionStrings("MyConnectionString").ConnectionString objCommand.CommandText = "UPDATE Company SET CompanyName=@CompanyName,ContactName=@ContactName,ContactTitle=@ContactTitle,Address=@Address,City=@City,Region=@Region,PostalCode=@PostalCode,Country=@Country,Phone=@Phone,Fax=@Fax WHERE USERNAME=@UserName" objCommand.Parameters.AddWithValue("@UserName", User.Identity.Name) objCommand.Parameters.AddWithValue("@CustomerID", txtID.Text) …
The End.