How to get data back from client side to the server side
-
Hello all, This might be simple issue, but I am new in this. I have a datagrid, and I am sending datagrid's row data to the javascript function on- onclick event using itembound property.(e.item...) I need to use that row data again on server side, (I need to identify, which row was clicked) for adding that row data to the client's outlook calendar.Basically, I have a list of appointments in datagrid.This is the first question. Second, If anybody know, how to add, appointment to the MS-Outlook from asp.net(by javascript or serverside code) please help me. Thank you very much. NIKI
-
Hello all, This might be simple issue, but I am new in this. I have a datagrid, and I am sending datagrid's row data to the javascript function on- onclick event using itembound property.(e.item...) I need to use that row data again on server side, (I need to identify, which row was clicked) for adding that row data to the client's outlook calendar.Basically, I have a list of appointments in datagrid.This is the first question. Second, If anybody know, how to add, appointment to the MS-Outlook from asp.net(by javascript or serverside code) please help me. Thank you very much. NIKI
Handle the datagrid events for row selection etc, no javascript needed.
-
Handle the datagrid events for row selection etc, no javascript needed.
Thank you Mark for your quick reply. I already implemented the javascript functionality. I am using the javascript function to display the details for the selected appointment in the datagrid in some format. I need to use that javascript. Any idea, how i can add that appointment details to the ms-outlook? Thanks NIKI
-
Thank you Mark for your quick reply. I already implemented the javascript functionality. I am using the javascript function to display the details for the selected appointment in the datagrid in some format. I need to use that javascript. Any idea, how i can add that appointment details to the ms-outlook? Thanks NIKI
Dhruvil wrote:
I need to use that row data again on server side...This is the first question
Dhruvil wrote:
I already implemented the javascript functionality.
Don't waste everyones time here by asking questions you don't need answered.:rolleyes:
-
Dhruvil wrote:
I need to use that row data again on server side...This is the first question
Dhruvil wrote:
I already implemented the javascript functionality.
Don't waste everyones time here by asking questions you don't need answered.:rolleyes:
Hi Mark, I am sorry for that. I should wrote down complete things. Actually, the javascript functionality I implemented is not for getting data from client side to the server side, but for sending data of datagrid row from serverside to client side using datagrid events. If u want some more details, let me know. I have data on client side, but for some funcionality, i need the data from client side to server side for the perticular datagrid row. Thanks NIKI
-
Hi Mark, I am sorry for that. I should wrote down complete things. Actually, the javascript functionality I implemented is not for getting data from client side to the server side, but for sending data of datagrid row from serverside to client side using datagrid events. If u want some more details, let me know. I have data on client side, but for some funcionality, i need the data from client side to server side for the perticular datagrid row. Thanks NIKI
I still don't understand what the problem is. You have access to the data for the row that was clicked when handling the events for the datagrid. http://www.codeproject.com/aspnet/datagriddemo.asp[^]
-
I still don't understand what the problem is. You have access to the data for the row that was clicked when handling the events for the datagrid. http://www.codeproject.com/aspnet/datagriddemo.asp[^]
Hi I have List of events in datagrid, in which i am showing only dates in the datagrid.when someone click on a row in datagrid, it will display the details for that date's event in tabular format using a javascript function on a same page.I have one hyperlink to add that details in the microsoft outlook. when some one click on that hyperlink, the displayed event will be added to the outlook.I am very confuse with this as I am implementing first time. Thank you very much.
-
Hi I have List of events in datagrid, in which i am showing only dates in the datagrid.when someone click on a row in datagrid, it will display the details for that date's event in tabular format using a javascript function on a same page.I have one hyperlink to add that details in the microsoft outlook. when some one click on that hyperlink, the displayed event will be added to the outlook.I am very confuse with this as I am implementing first time. Thank you very much.
To add to outlook, you need to drive the object model. The difficulty will come if in an environment with Exchange SErver, which stores all this stuff centrally. If you're happy just to use the client's Outlook, then google for "Outlook Object Model"...there WILL be version issues as will all office object models however. In terms of pushing data from the client to the server, the usual way to do this is with a postback (or AJAX if a postback is not desirable). Just post the form to the server, and ypu'll have access to all the bits you need. (Though if you're feeling brave, you COULD do it all client side with some fairly heavy-duty Javascript!) "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox