Very sorry for the lack of information. Thanks for your patience. Yes i was refering to the createuserwizard. When users register, their information is stored in the members db. How can i get them to edit information they used to sign up. ie their email address. Many thanks
solarthur01
Posts
-
Editing members -
Editing membersI have created a website using the createwizard control. Does anyoone know how i can allow users to edit their own details. many thanks
-
email errordoes anyone know how to enable STARTTLS in the mailsetting of the web.config file in asp.net. I keep getting the following error: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first e33sm3474460ugd.80. Been stuck on this for days can anyone help?? cheers!!
-
Enable SSL in web.configI am using .net to send email in an application, however im getting the following error: "The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first u1sm554149uge.14 " heres my web.config <mailSettings> <smtp from="solarthur01@gmail.com"> <network host="smtp.gmail.com" password="pass" port="587" userName="user@gmail.com" /> </smtp> </mailSettings>
-
Udating User InfoI am using visual studion to create users using the create user wizard. Is it possible to edit registered uses information???
-
Create user wizardI am using the create user wizzard on my asp.net page. Can i specify which database users are added to and can i give users the ablilty to update details. can any one help me please. Many thanks
-
Streaming VideoI am running windows xp. That download seems to be for windows server 2003. any ideas how i can stream on a xp platform
-
Streaming Videohi, does anyone know how i can stream an avi video on as asp.net page?? many thanks in advance
-
update panel positioningHow do i actually set the anchor property??I have had a look on google but no help. many thanks
-
update panel positioningthis may seem elementry ......I have two update pannels and i can't seem to position them side by side. Is there any way that the positioning can be made absolute???? many thanks in advance
-
auto update update panelI am using an update panel which updates the datagrid when the button is clicked. How do i update it automatically (every 3 seconds) instead of clicking the button. many thanks
-
Problem using sleep functionthe above code works (partially). it only displays one record. It is meant to display one record sleep for 2 seconds, then display the next record(as the code specifies).
-
import data from excel spreadsheet into sql databaseDoes anyone know hot to import data from a spreadsheet into sql server table. Many thanks
-
Problem using sleep functionThe below code is meant to get data from a db, display the first row, sleep for 2 seconds then display the second row. Can anyone spot what i may have done wron??? many thanks. Dim ds As DataSet = New DataSet ad.Fill(ds, "tblcustomers") Dim dtab As DataTable = ds.Tables(0) Dim dtabclone As DataTable = dtab.Clone() Dim drow As DataRow = dtab.Rows(0) dtabclone.ImportRow(drow) GridView1.DataSource = dtabclone GridView1.DataBind() 'gridview1 System.Threading.Thread.Sleep(2000) drow = dtab.Rows(1) dtabclone.ImportRow(drow) GridView1.DataSource = dtab.Clone GridView1.DataBind()
-
update panel:( I have set it to conditional however it stll updates the whole page.
-
update panelim trying to use the update panel but it updates the entire page as supposed to the update panel. i cant find what i have done wrong. can anyone help??? Many thanks in advance ==================================================================================== <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TagPrefix="asp" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager id="ScriptManager1" runat="server"> </asp:ScriptManager> </div> <asp:UpdatePanel id="UpdatePanel1" runat="server"> <contenttemplate> <asp:Label id="Label1" runat="server" Text="panel Created"></asp:Label> </contenttemplate> <triggers> <asp:AsyncPostBackTrigger ControlID="Button1"></asp:AsyncPostBackTrigger> </triggers> </asp:UpdatePanel> <asp:Button ID="Button1" runat="server" Text="Button" /> </form> </body> </html> ===========================code behind================ Protected Sub Button1_Click1(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = "Refreshed at " & _ DateTime.Now.ToString() End Sub
-
update panelim trying to use the update panel but it updates the entire page as supposed to the update panel. i cant find what i have done wrong. can anyone help??? Many thanks in advance ==================================================================================== <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TagPrefix="asp" %> Untitled Page
===========================code behind================ Protected Sub Button1_Click1(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = "Refreshed at " & _ DateTime.Now.ToString() End Sub
-
system.thread.sleepi dont quite understand what i need to do.
-
system.thread.sleepim trying to use the system.thread.sleep function to display data in a gridview with a 3 second delay however results are not being displayed. It seems to be a problem with the system =========================================================================================== Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1. Dim ds As DataSet = New DataSet ad.Fill(ds, "tblcustomers") Dim dtab As DataTable = ds.Tables.Add(0) Dim dtabclone As DataTable = dtab.Clone() Dim drow As DataRow = dtab.Rows(0) dtab.Clone.ImportRow(drow) GridView1.DataSource = dtab.Clone GridView1.DataBind() System.Threading.Thread.Sleep(3000) drow = dtab.Rows(1) dtab.Clone.ImportRow(drow) GridView1.DataSource = dtab.Clone GridView1.DataBind()
modified on Monday, January 28, 2008 10:57:23 AM
-
Does any one know what i have done wrongdo you know how i can implement it or where i can get some information about it from?