Search

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

Matching Posts

  • Re: New ASP.NET 2.0 Website http://www.webjots.com

    Yeah that didn't work. I've tried to get your Starter Kit to work but it doesn't seem to want to. Is it possible you could send me the code so I can see how you do thinks. I find it much easier to learn from examples. Cheers
    Posted to Getting Started (Forum) by levyuk on 6/15/2005
  • Re: New ASP.NET 2.0 Website http://www.webjots.com

    Rich I have been trying to get information from my code-behind file but it wont work. I'm assuming this is what you have done with this line here <%# StripHtmlFromText(Eval("jot_text")) %> As a simple test I tried this in the code behind file. Function GetDate( ) As String Dim DateString As String DateString = System.DateTime.Now.ToShortDateString Return DateString End Function Then I put this into my aspx file. < asp : Label ID ="Label1" runat ="server" Text =" <%# GetDate() %> "><
    Posted to Getting Started (Forum) by levyuk on 6/14/2005
  • Re: Navigation and Security Trimming

    What you could do is have a different sitemap file for anonymus users. This is how I did it. If you need to use more than one siteMap file in your ASP.net application then you will need to add the following section to the applications Web.config file. Once this is done you will be able to set the siteMapProvider property to either " MyXmlSiteMapProvider " or " Secure " <siteMap defaultProvider =" MyXmlSiteMapProvider " enabled =" true "> <providers> <add name =" MyXmlSiteMapProvider
  • Re: Deleting records in a GridView

    Can't you just change it from a select to a delete statement, with a few other changes. There shouldn't be much problems with a join.
    Posted to Data Presentation Controls (Forum) by levyuk on 5/24/2005
  • Re: SQL Select Clause

    I had problem with this but I just ended up coding it using vb instead of using the controls. Bit more work but it works. The only problem then is that sorting and paging isn't so easy
    Posted to Data Presentation Controls (Forum) by levyuk on 5/24/2005
  • Re: Where did the web part page menu go?

    I believe it has been moved in beta 2 but i don't know why. You will have to make your own menu, which isn't that difficult. This should be able to help you http://beta.asp.net/guidedtour2/s30.aspx
    Posted to Visual Studio 2005 (Forum) by levyuk on 5/24/2005
  • Re: Is this possible?

    Ok this might help you http://beta.asp.net/guidedtour2/s27.aspx
  • binding a dropdownlist to a database

    Hi, How can I add items to a dropdownlist at runtime. I have a textbox, a button and a dropdownlist. A number is entered into the textbox and the button is clicked. This will pass the number in the textbox to my stored procedure which will then execute. What I need to do is fill the dropdownlist with the returned items. How can I do this? this is my current code Dim cmdSelect As SqlCommand Dim reader As SqlDataReader Dim conn As SqlConnection = New SqlConnection( "Data Source=.\SQLEXPRESS;AttachDbFilename
    Posted to Data Presentation Controls (Forum) by levyuk on 5/20/2005
  • Image button and text

    Is it possible to put text onto an image button? Because I can't find where Thanks Levy
    Posted to Getting Started (Forum) by levyuk on 5/20/2005
  • Using a Calendar control as a parameter source

    hello Currently I use a textbox to enter a date into which is then used as a parameter to search a database using a stored procedure. I would like to change this to a calendar control. this is my current code < asp : SqlDataSource ID ="SqlDataSource2" runat ="server" ConnectionString =" <%$ ConnectionStrings:ConnectionString %> " SelectCommand ="sp_selectAll" SelectCommandType ="StoredProcedure"> < SelectParameters > < asp : Parameter DefaultValue ="0" Direction ="Output" Name
    Posted to Data Presentation Controls (Forum) by levyuk on 5/20/2005
Page 1 of 4 (36 items) 1 2 3 4 Next >