Search

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

Matching Posts

  • Re: Wilco's ProgressBar Demo

    Hey! This is just what I need, but how do I set the whole thing ablaze? I've created an upload page, which works fine. And I have a webservice which, based on the client IP, returns the current status of the process. I've put the javascript progressbar directly in the aspx file, a div (class="progressBar") within a div (class="progressBarContainer") and the stylesheet classes from Wilcob's example. Furthermore I've set the serviceUrl to my webservice, and the servicemethod to my servicemethod. When
    Posted to ASP.NET AJAX UI (Forum) by supersuggen on 5/11/2006
  • Re: Progress bar

    It seems to be a wicked progress bar you've created, but man I'm having a hard time adapting to your technique.. I'm not at all familiar with Javascript or C#. VB here.. Just to check if I'm on the right track: So, the progress control is defined in the Scriptlibrary folder javascript file? And the parameters of these control is accesible programmatically (using VB.NET) from whatever process (running on the server)? And you're using out of the box atlas, just in your own way? I'm a little confused
  • Re: Dynamically created control values

    Nevermind. I got it. If anyone is interested, here it is: Dim plhCon As PlaceHolder = Nothing For Each plhCon In plhTrack.Controls Dim i As Integer For i = 1 To plhCon.Controls.Count Dim txbTrackNo As TextBox = CType (plhCon.FindControl( "TrackNo" & i), TextBox) Dim txbSongTitle As TextBox = CType (plhCon.FindControl( "SongTitle" & i), TextBox) Dim txbPublisherRefNum As TextBox = CType (plhCon.FindControl( "PublisherRefNum" & i), TextBox) Dim txbComposer As TextBox = CType (plhCon.FindControl
    Posted to Web Forms (Forum) by supersuggen on 5/4/2006
  • Re: SQL Membership provider problems:

    Nevermind.. My mistake.
    Posted to Security (Forum) by supersuggen on 5/3/2006
  • Re: SQL Membership provider problems:

    I didn't get this to work.. I think I'm after the same thing. I want my membership information stored in a SQL database on a different server (on the network). I have a functioning connectionstring with all permissions. I've plaved the code you present here between the configuration tags in the web.config and replaced the connectionstring to my own. When I run the website configuration, I get the following error: Unknown configuration part Membership (...\web.config line 23) Line 23 is where I placed
    Posted to Security (Forum) by supersuggen on 5/3/2006
  • Dynamically created control values

    Hey! I've created a page, that based on some input from the session create a number of controls. This works fine, but I don't seem to find a way to get the values back from the controls when the client has filled out the information in the textboxes and fileupload controls. Here's my code for creating the controls: intTracks = Me .Session.Item( "Tracks" ) strArtistName = Me .Session.Item( "ArtistName" ) strAlbumTitle = Me .Session.Item( "AlbumTitle" ) strAlbumSubTitle = Me .Session.Item( "AlbumSubTitle
    Posted to Web Forms (Forum) by supersuggen on 5/3/2006
  • Re: Horizontal scroll bar appears in Netscape 7.2

    A1ien51, thanks man, works like a charm =) body, html {width: 94%; height:92%;} Hits the spot!
    Posted to Client Side Web Development (Forum) by supersuggen on 6/30/2005
  • Re: Horizontal scroll bar appears in Netscape 7.2

    Hey! I have a similar problem. Using Visual Studio 2005 Beta 2 I've come across several issues conserning using css. I'm testing this with the built-in test enviroment to Visual Studio 2005, which I'm fairly sure is the same as .net framework 2.0 and IIS 6.0. First off I have a failry long document (.aspx) inside an iframe which is presented in IE with an unwanted horizontal scrollerbar. I've tried to reduce the width of the content with a table. I can reduce the width to 10% and the scrollerbar
    Posted to Client Side Web Development (Forum) by supersuggen on 6/30/2005
  • Re: ListBox Multi Selection To String

    This SQL string didn't work: InsertCommand ="INSERT INTO Labels(CompanyName, OrganizationNumber, Genre , WebPage, FirstName, MiddleName, LastName, Email, Jobtitle, BusinessAdressStreet, BusinessAdressCity, BusinessAdressPostalCode, BusinessAdressCountry, BusinessTelephoneNumber, MobileTelephoneNumber, BusinessFaxNumber) VALUES (@CompanyName, @OrganizationNumber, '" & SelectedGenres & "' , @WebPage, @FirstName, @MiddleName, @LastName, @Email, @Jobtitle, @BusinessAdressStreet, @BusinessAdressCity
    Posted to Getting Started (Forum) by supersuggen on 6/13/2005
  • Re: ListBox Multi Selection To String

    Thanks alot guys! Made it work this far, but a new problem arised.. The ListBox is located inside a FormView control which I don't seem to get access to. When I refer to the ListBox ID there's no response. I've tried to refer to the ListBox ID as "FormView.InsertItemTemplate.ListBox" too, but that doesn't work. I'm going to start building the form (and the listbox) outside the FormView control now, but I hate to believe the control is that.. basic.. It has been such a nice tool until now : ( Any
    Posted to Getting Started (Forum) by supersuggen on 6/10/2005
Page 1 of 2 (11 items) 1 2 Next >