Search

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

Matching Posts

  • With Master Page, Using <script> In Content Page

    I have some aspx pages in a website and I want to start using a new Master Page. One set of instructions tells me to remove all the HTML tags up to the <form></form> block for a Content Page. But what if the Content Page has a CustomControlValidator that refers to some script in the <head> ? Where would I put the <script>? In the Master Page? In the Content Page (and where) ?
    Posted to Master Pages, Themes and Navigation Controls (Forum) by jabailo on 12/14/2009
    Filed under: master page content place holder layout problem
  • LinqDataSource onselected event not firing

    I have a LinqDataSource on an .aspx page. I set the onselected event to a method that sets the WHERE clause parameter In my Page_Load method I perform a linq query using the DataClassesDataContext that is connected to the LinqDataSource. The query returns data, but it does not fire the onselected method and does not use the WHERE clause parameter. I have not bound the LinqDataSource to any other control. I simply want to retrieve a value for a TextBox. What triggers the onselected event?
    Posted to Data Presentation Controls (Forum) by jabailo on 12/10/2009
  • Re: FileSystemWatcher in global.asax

    Thanks a lot. What I did was this and it seems to work now when I edit my XLM file in notepad it reloads the Application variable: FileSystemWatcher watcher; protected void Application_Start( object sender, EventArgs e) { Application.Add( "watcher" , new FileSystemWatcher ( ConfigurationManager .AppSettings[ "sitespath" ].ToString())); watcher = ( FileSystemWatcher )Application[ "watcher" ]; [your code] } //based on http://forums.asp.net/p/1044724/1462892.aspx#1462892
    Posted to Web Forms (Forum) by jabailo on 8/25/2008
  • Re: FileSystemWatcher in global.asax

    This worked great in Visual Studio -- but when I moved it as a completed web application to another server...global.asax doesn't seem to load the file when it is modified. Any suggestions?
    Posted to Web Forms (Forum) by jabailo on 8/25/2008
  • Re: Wildcard Application Mapping Not Working For Web Site...Only for Virtual Directory

    Thanks for tip...I added it there as well. It's really a cross server/application issue in a way, so perhaps someone will chime in from both sites.
    Posted to Free For All (Forum) by jabailo on 8/13/2008
  • Wildcard Application Mapping Not Working For Web Site...Only for Virtual Directory

    I am trying to install a URL Rewriter (HttpModule) on a Web Site (top level). This code requires that I map a wildcard setting to aspnet_isapi.dll for .NET 2.0. The code works fine from virtual directory, but when I install it as a top level web site (own IP), it throws a 404 error. To me, it appears as if the Wildcard Application Mapping (within the Application Configuration property sheet of IIS 6.0) is not working for a web site. Again, the wildcard mapping works in a virtual directory, and doesn't
    Posted to Free For All (Forum) by jabailo on 8/13/2008
  • Re: ModalPopupExtender resets TabIndex to -1

    In ModalPopupBehavior.js //JAB Change //IE6 Bug with SELECT element always showing up on top if ((Sys.Browser.agent === Sys.Browser.InternetExplorer) && (Sys.Browser.version < 7)) { for ( var k = 0 ; k < this ._saveDesableSelect.length; k++) { //JAB Change commented 06/17/2008 //this._saveDesableSelect[k].tag.style.visibility = this._saveDesableSelect[k].visib; //instead: this ._saveDesableSelect[k].tag.style.visibility= 'visible' ; } Array.clear( this ._saveDesableSelect);
    Posted to ASP.NET AJAX UI (Forum) by jabailo on 8/5/2008
  • Re: IE6 Throws js exception when returning to modalpopup

    In the Toolkit code, I disabled the method completely for IE6 in the if condition by changing the browser version from 7 to 6 if (Sys.Browser.agent == Sys.Browser.InternetExplorer && Sys.Browser.version < 6)
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jabailo on 7/30/2008
  • ExecuteQuery Locking Record/Table?

    I'm getting some wierd behavior on executing a sproc that does an insert. I do this in Page_Load to track sessions. I run a sproc that inserts a record with ExecuteQuery on a SqlCommand object. After repeated execution of the method that calls the sproc, the table appears to get locked for that record (using a different id with the same sproc appears to run fine). Execution of the insert sproc takes longer and longer until it times out. Should I be adding any special parameters to my SqlCommand
  • Re: 'AjaxControlToolkit' is undefined

    Man...after two hours of grief where my production site was down the day before my vacation...your suggestion fixed the problem! My dev machine drifted an hour ahead of production. Set it back and all was ok. Where do I ship the case of beer to?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jabailo on 7/4/2008
Page 1 of 7 (65 items) 1 2 3 4 5 Next > ... Last »