Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

solarthur01

@solarthur01
About
Posts
55
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Editing members
    S solarthur01

    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

    ASP.NET

  • Editing members
    S solarthur01

    I have created a website using the createwizard control. Does anyoone know how i can allow users to edit their own details. many thanks

    ASP.NET

  • email error
    S solarthur01

    does 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!!

    ASP.NET help csharp asp-net sysadmin tutorial

  • Enable SSL in web.config
    S solarthur01

    I 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>

    ASP.NET sysadmin help csharp com security

  • Udating User Info
    S solarthur01

    I am using visual studion to create users using the create user wizard. Is it possible to edit registered uses information???

    ASP.NET question

  • Create user wizard
    S solarthur01

    I 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

    Visual Basic csharp asp-net database help announcement

  • Streaming Video
    S solarthur01

    I am running windows xp. That download seems to be for windows server 2003. any ideas how i can stream on a xp platform

    ASP.NET csharp asp-net question

  • Streaming Video
    S solarthur01

    hi, does anyone know how i can stream an avi video on as asp.net page?? many thanks in advance

    ASP.NET csharp asp-net question

  • update panel positioning
    S solarthur01

    How do i actually set the anchor property??I have had a look on google but no help. many thanks

    Visual Basic question announcement

  • update panel positioning
    S solarthur01

    this 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

    Visual Basic question announcement

  • auto update update panel
    S solarthur01

    I 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

    Visual Basic question announcement

  • Problem using sleep function
    S solarthur01

    the 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).

    ASP.NET database help question

  • import data from excel spreadsheet into sql database
    S solarthur01

    Does anyone know hot to import data from a spreadsheet into sql server table. Many thanks

    Database database sql-server sysadmin

  • Problem using sleep function
    S solarthur01

    The 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()

    ASP.NET database help question

  • update panel
    S solarthur01

    :( I have set it to conditional however it stll updates the whole page.

    Web Development announcement html design sysadmin help

  • update panel
    S solarthur01

    im 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

    Web Development announcement html design sysadmin help

  • update panel
    S solarthur01

    im 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

    ASP.NET announcement design help question

  • system.thread.sleep
    S solarthur01

    i dont quite understand what i need to do.

    Visual Basic help

  • system.thread.sleep
    S solarthur01

    im 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

    Visual Basic help

  • Does any one know what i have done wrong
    S solarthur01

    do you know how i can implement it or where i can get some information about it from?

    Visual Basic security help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups