Search

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

Matching Posts

  • Get the gridview selected control values in the button click placed outside the gridview.

    i need to access the controls in a row which is selected in the gridview, in the button click event. This button placed outside the gridview. how to get the selected row controls in the code behind. else possibly to use with javascript . thx in advance.
    Posted to Data Presentation Controls (Forum) by dhinakaranpc on 9/25/2009
  • get Selected Gridview row controls in a button click event outside the gridview

    i need to access the controls in a row which is selected in the gridview, in the button click event. This button placed outside the gridview. how to get the selected row controls in the code behind. else possibly to use with javascript .
    Posted to Data Presentation Controls (Forum) by dhinakaranpc on 9/25/2009
  • Re: download session

    Hi, first you colud ask the user to login with the email id, to check whether the person is a valid user, then set a session variable or a cookie variable. then redirect the user to download... if the user comes again, jus check whether the the variable (session/cookie) is persist or not. if the variable does not exists, then redirect to the page where the user again need to verify whether a valid user. this will work, and so simple to do.. try this...
    Posted to State Management (Forum) by dhinakaranpc on 8/17/2009
  • Re: Running a job everyday (scheduling)

    Hi... try this ... it will work ... http://www.codeproject.com/KB/cs/WindowsServicesInAction1.aspx http://aspalliance.com/1087_Working_with_Windows_Services_in_NET.all www.c-sharpcorner.com/UploadFile/radcaesar/WebServiceCallScheduler06212007024207AM/WebServiceCallScheduler.aspx
    Posted to Getting Started (Forum) by dhinakaranpc on 8/17/2009
  • Re: Get Hours from datetime range

    Hi vamse... i cant get you, what do ypu mean abount "dividing the timespan". are you getting the records from the database in hourly basis. else , what you want to manipulate the data from the existing datarow. you almost correct. i am not getting , where you stuck.
    Posted to Web Forms (Forum) by dhinakaranpc on 8/17/2009
  • Re: Change session Id

    If you want to maintain every user with the unique session ID once the user logged in ,you can store the unique session id in the login table in the database, then when the user enter in to the new page in the page load, you can check with the session id where you have stored in the db else you can redirect to the login screen again, you can update the db value in every sucessful login of the user.
    Posted to State Management (Forum) by dhinakaranpc on 8/17/2009
  • Re: web services and Business Object data cleansing

    write the wsdl output as a myWsdl.xml file. set the datasource in the gridview. DataSet dsWsdl = new DataSet(); dsWsdl.ReadXml("myWsdl.xml"); gvAddInfo.DataSource =dsWsdl; gvAddInfo.DataBind(); Set the Gridview property as Autogeneratedcolumns="false".
    Posted to XML Web Services (Forum) by dhinakaranpc on 8/14/2009
  • Re: Calling a server side method using JavaScript

    Use the Ajax function to call the server events fro the client side, set the showFac function in the dropdown onchange event, <script language="javascript" type="text/javascript"> var xmlHttp function showFac() { MeId = dropdown.selectedvalue; xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your Browser Does Not Support AJAX!"); return; } var url="~/MyFolder/getFacPage.aspx"; url=url+"?Meid="+MeId; xmlHttp.onreadystatechange=stateChanged;
  • Re: Calling a server side method using JavaScript

    Use the Ajax function to call the server events fro the client side, set the showFac function in the dropdown onchange event, <script language="javascript" type="text/javascript"> var xmlHttp function showFac() { MeId = dropdown.selectedvalue; xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your Browser Does Not Support AJAX!"); return; } var url="~/MyFolder/getFacPage.aspx"; url=url+"?Meid="+MeId; xmlHttp.onreadystatechange=stateChanged;
  • Re: Deleting session id's created by browsers on server's

    Jus save the session id in the table once the user logged in and set the bool value true tells the stauts "logged in". and check the if the same user trying to log in from the another system , could cehck the user logged in already. in the session end event whcih could be called eventhough the window closed, you can trigger the event which could cahnge the login status in the table, so that the user can log in again later. try this out it could work. tnnx. Mark as "Answer" if
    Posted to State Management (Forum) by dhinakaranpc on 8/14/2009
Page 1 of 4 (31 items) 1 2 3 4 Next >