Search

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

Matching Posts

  • Events not raised on Custom WebControl postback

    Hi, i use a baseClass " SkinnedWebControl " for my custom WebControl " WebLogin " to load the ASCX file so each portal can custom the UI with their needs. My problem is that i cant make the event work on my " WebLogin " on postback. As you will see i have assign the Handler and WithEvents but nothing works. Imports System Imports System.Drawing Imports System.Collections Imports System.Collections.Specialized Imports System.Web Imports System.Web.UI Imports System.Web
    Posted to Web Forms (Forum) by Beaulieu on 8/29/2009
  • Re: Events not raised on Custom WebControl postback

    It does not work. When i load my ASCX file as a skin, the file allready contain the buttons or textbox with a ID identify to it like so "btnLogin" "txtUsername". When the control gets rendered in load time and i look at the source code at the end on the broswer. i can see they didnt have a asp.net unique ID. i think thats my problem. and the trace does not show it i just found that the trace was giving me issue. i have multiple id which have same value. "Multiple controls
    Posted to Web Forms (Forum) by Beaulieu on 8/29/2009
  • Using Themes, MasterPages on a Multi Portal web project, "fake App_Themes"

    Hi, I would like to use the theme system of asp.net so the styles, images and masterpages can be set in a subfolder like so "/ Sites/Site01/Themes/ThemeName/MasterPage.master ". All the styles CSS file will be inside of the custome folder including images. How do i make my webproject to read the good location of each of my websites? And how can i make the images work "path" when inserted in the master page? thank you
  • Re: Using Themes, MasterPages on a Multi Portal web project, "fake App_Themes"

    The thing is i do not want to use the actual "App_Themes/ThemeName/" of asp.net. I want a custom location of the "/App_Themes/" to be something like this for each web portals. "Root/Sites/Site_01/Themes/ThemeName/MasterPage.master" and all the CSS will be located in that custom folder including images. thank you
  • Re: Using Themes, MasterPages on a Multi Portal web project, "fake App_Themes"

    okay. i do know all this But, the thing is that the users wont know how to include the <link> tag of the CSS and the right path of each images since it required too much knowledge LOL !! So, I was thinking of caching the CSS and include then on each page request or master request but how do make sure that the IMG will be linked properly with the user by simply doing one of the two options to include the images : ("MyImageName.jpg", "images/MyImageName.jpb") allways from
  • Community Server Download or AspNetForums open source files

    Hi friends! I use to have the latest Community Server Open Source Project that was available back in time. I had a hard drive crash and lost SO many good old projects that was open source. anybody still have a copy and would like to share it to me? thank you ! beaulieu1@hotmail.com
    Posted to Free For All (Forum) by Beaulieu on 8/17/2009
  • Client-side Controls Invoking Web Service

    Hi dear friends, I would like to extand my knowledge so i can build faster better website or intranet applications using ASP.NET. I saw that the best way to make a FAST HIGH performance website is to use Clientside script with webservices to bind grids or any kind of web controls. I currently use the Framework 3.5 with the UpdatePanel control but i can see that my apps are slow to refresh on postbacks. Basically i would like to know a great good website that will explain how to do so with examples
  • disabled checkboxlist items with javascript

    Hi, i trying to enabled and desabled all checkbox items in the checkbox list control by using a checkbox control. i have no bug issue here is just that the controls stay desabled all the time. < asp : CheckBox ID ="chkActivateRecurring" runat ="server" Text ="Activate recurring option" onClick ="UnknowOnOff();" /> < asp : CheckBoxList ID ="chkWeekDay" runat ="server" RepeatDirection ="Horizontal" Enabled ="false">
    Posted to Client Side Web Development (Forum) by Beaulieu on 6/30/2009
  • Re: disabled checkboxlist items with javascript

    yes it does thank you, but how do i set on page load the default enabled value to all items to false?
    Posted to Client Side Web Development (Forum) by Beaulieu on 6/30/2009
  • Re: Find dates between range of weeks

    alter procedure [dbo].[psi_Calendar_Find_WeeklyDates] @StartDate datetime , @EndDate datetime , @Weekdays varchar (200), @WeeksCount int as declare @sql_Cmd nvarchar (1000) set @sql_Cmd = ' SELECT * FROM opt_calendar WHERE DayWeek IN (' + @Weekdays + ') AND DateID BETWEEN ''' + convert ( varchar (25), @StartDate) + ''' AND ''' + convert ( varchar (25), @EndDate) + ''' AND IsHoliday = 0 AND ( ( datepart(wk,DateID) - datepart(wk,'''
Page 1 of 37 (364 items) 1 2 3 4 5 Next > ... Last »