Search

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

Matching Posts

  • Re: Stop a postback from hitting the postback event

    RTernier, did you find a solution to this? I have a base page class which i use to check for session timeouts which works fine using standard ASP.NET events. However, when an AJAX event is fired and the session has expired the base page load event correctly determines that the page has expired, but the server side code behind the AJAX event is fired anyway. I don't want to have to put code in to each event that i write to check for the session timing out. i just want prevent the server side code
    Posted to Web Forms (Forum) by kennyp on 6/4/2008
  • Re: Attribute query in custom control

    thanks for the swift response joteke. I'm a bit emabrrassed, but it all seems to be working as expected now. I can't see where i've made any modifications, but now the function fires when expected with no issues.
    Posted to Custom Server Controls (Forum) by kennyp on 3/18/2008
  • Attribute query in custom control

    I am writing a custom composite control. Using an embedded .js file and attributes i can my control (primarily a textbox) to behave as expected. I have added the following attributes to the control during the OnInit event of the control. Protected Overloads Overrides Sub OnInit( ByVal e As EventArgs) MyBase .OnInit(e) Me .Attributes.Add( "onkeydown" , "javascript:return fName(this, event);" ) End Sub the function fName is in my javascript file and returns the expected result.
    Posted to Custom Server Controls (Forum) by kennyp on 3/18/2008
    Filed under: attributes, custom control
  • Re: Passing parameters from SOAP to vb.net Webservice

    Success! There was difference in the namespaces. My webService looked like this: <System.Web.Services.WebService(Namespace:= "http://dev8-kp/MyXMLService/MyXmlService.asmx" )> _ <System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1, Name:= "WSBinding" )> _ <ToolboxItem( False )> _ Public Class MyXMLService Inherits System.Web.Services.WebService <WebMethod()> <SoapDocumentMethod(Action:= "GetHCNLookup" )> _ Public
    Posted to XML Web Services (Forum) by kennyp on 1/11/2008
  • Passing parameters from SOAP to vb.net Webservice

    I have a problem passing my parameters. I'm reasonaly new to xml and had really only used webservices before from vb classes complete with intellisense, so this is a bit different for me. I'm accessing the webservice from a function in an oracle database. This creates the SOAP Package as follows: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    Posted to XML Web Services (Forum) by kennyp on 1/10/2008
    Filed under: web Service xml, Web Services, xml web service, XML
  • Re: Delayed events.

    cheers damien, i'll take a look into it.
    Posted to ASP.NET AJAX UI (Forum) by kennyp on 10/1/2007
  • Delayed events.

    i've been working on this all day and haven't made it very far. I have 3 combos in an updatepanel with autopostback =true. combo 2 is dependant on 1, and combo 3 is dependant on 1 or 2. When i select a value for combo1, it's SelectedIndexChanged fires. Inside his procedure there is code to set the values of the other combos. The SelectedIndexChanged events don't fire for the other combos. Instead they wait until another button has been pressed then they fire before that buttons clicked
    Posted to ASP.NET AJAX UI (Forum) by kennyp on 9/28/2007
  • Re: TabControl / TabPanel / UpdatePanel / ObjectDataSource

    i figured it out. It was a problem entirely of my own making. All of my gridviews had the attribute EnableViewState="false". This made my gridviews repopulate and i was left making 20+ separate trips to the server. Removing this attribute dramatically improves my performance. Thanks for the other posts Damien, that'll be handy in the future. Much appreciated.
    Posted to ASP.NET AJAX UI (Forum) by kennyp on 9/4/2007
  • Re: TabControl / TabPanel / UpdatePanel / ObjectDataSource

    thanks for the quick reply damien. I watched the video clip and read the post you linked to but unfortunately have not been able to fix this yet. i tried changing the update modes for each of the Update panels within my TabPanels and then the updatepanel that my TabControl is inside, but this doesn't seem to have had any impact on the behaviour of the form. When i select a row from one of the grids and detailsviews, the ObjectDataSource Selecting events fire for the other grids too, then the
    Posted to ASP.NET AJAX UI (Forum) by kennyp on 8/29/2007
  • TabControl / TabPanel / UpdatePanel / ObjectDataSource

    Afternoon folks, i have a tab control with several tab panels. Each of these panels contains an UpdatePanel. Inside each UpdatePanel i have 1 GridView, 1 DetailsView and 2 ObjectDataSources. The ObjectDataSource of the DetailsView has the GridView as a ControlParameter so when the selected index of the GridView changes, the DetailsView shows the correct information. This works fine for an individual TabPanel. However, i have several panels and even though each TabPanel contains it's own UpdatePanel
    Posted to ASP.NET AJAX UI (Forum) by kennyp on 8/29/2007
    Filed under: ObjectDataSource, tab container, tab container and update panel, tab panel
Page 1 of 2 (18 items) 1 2 Next >