Search

You searched for the word(s): userid:610954

Matching Posts

  • extra Themes?

    Hello. I was just wondering if there is a place to download any other Themes for use with this Starter Kit? I do like the "Standard" theme, but I would like to switch it up a bit. Thanks!
  • Re: LINQ to SQL change property data type in Partial class

    Hello. What class do you place the new Property you want to create?
  • Re: how to work with DropDownList

    Hello. Just wondering if anyone is out there?
    Posted to Web Forms (Forum) by brendalisalowe on 8/24/2005
  • Re: how to work with DropDownList

    I think I am making this harder than it really is, but I just can't figure it out. I will be done with this website for my friend as soon as I can figure this part out. Please help if you can! I am using Dreamweaver and Access database. I can even email you the files if you would like to take a look at it. Thanks for your time!
    Posted to Web Forms (Forum) by brendalisalowe on 8/22/2005
  • Re: how to work with DropDownList

    Hello. No I want the item that was picked on the first page to show up in the DDL when it goes to the next page. And I don't want it to be at the top of the DDL, but in alphebetical order. Do I explain myself?
    Posted to Web Forms (Forum) by brendalisalowe on 8/21/2005
  • how to work with DropDownList

    Hello. I have two different .aspx pages that I am having trouble with. On CourseList.aspx I have this on a dropdownlist change.: Sub DDLChanged(sender As Object, e As System.EventArgs) Session.Add("Program_Course", ddl.SelectedItem.Text) Response.Redirect("CourseListSpecific.aspx") End Sub And then on CourseListSpecific.aspx I have this: Sub Page_Load(sender as Object, e as EventArgs) If Not Page.IsPostBack Then LoadDDL() FilldgSpecific() End If End Sub Sub DDLChanged(sender As Object, e As System
    Posted to Web Forms (Forum) by brendalisalowe on 8/19/2005
  • Re: link to a file...if not there then what?

    I have this now, but it still isn't working. It just opens up a new blank IE. Any ideas? Thanks for your help! Function DoesFileExist(ByVal obj as Object) as String Dim str As String = string.empty If Not IsDBNull(obj) then str = "<a href='" & obj.ToString() & "' target='_blank'>STR</a>" Else Response.Redirect("Error.aspx") End If RETURN str End Function <asp:TemplateColumn> <ItemTemplate> <%# DoesFileExist(Container.DataItem("STRFileLocation"))%> </ItemTemplate>
  • link to a file...if not there then what?

    I have this that leads to a file on the network: <asp:TemplateColumn> <ItemTemplate> <a href="<%# DataBinder.Eval(Container.DataItem,"STRFileLocation").ToString() %>" target="_blank">STR</a></ItemTemplate> </asp:TemplateColumn> I was just wondering if I am doing it right? And if so, is there a way to have it go to a Sorry.htm page if the file does not exist?
  • Re: asp:table...every other row different color?

    I found this: http://www.sitepoint.com/article/background-colors-javascript but I can't figure out how to implement it. Or should I just go with a datagrid? Please let me know so I can continue coding... Thanks!
    Posted to Web Forms (Forum) by brendalisalowe on 6/30/2005
  • Re: asp:table...every other row different color?

    So you are saying stick with the table? This is what I have up in my <script> Sub FillTables() Dim dsTableA As New DataSet() Dim daTableA As OleDBDataAdapter Dim sql As String = "SELECT DISTINCT CName FROM tbl_CourseMainInfo WHERE Cname LIKE 'A%'" daTableA = New OleDbDataAdapter(sql, conn) conn.Open() daTableA.Fill(dsTableA, "TableA") conn.Close() Dim numrows As Integer = dsTableA.Tables("TableA").Rows.Count Dim numcells As Integer = 1 Dim j As Integer For j = 0 To numrows - 1 Dim r As New
    Posted to Web Forms (Forum) by brendalisalowe on 6/29/2005
Page 1 of 3 (25 items) 1 2 3 Next >