Thank you so much it is working fine.
Best Regards, M. J. Jaya Chitra
Thank you so much it is working fine.
Best Regards, M. J. Jaya Chitra
Dear Prakash, Thank your for your hint. Can you tell me how to load the JS dynamically by having them in the web application.
Best Regards, M. J. Jaya Chitra
I am having a global resource file in the App_GlobalResources folder. In that I have included my JS file. Also it is in the web applicaiton also. In the run time I want to load the js based on the resource file selected in the page and to register the events for the buttone. Kindly help me how to do it. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
What is this?
Best Regards, M. J. Jaya Chitra
Dear All, I am having a web application, in a page I want to do achieve the below functionality: In a grid list of options will be displayed, when the user selects and click on a button some process has to be done in back end in the same page but even though the user clicks on any grid paging or sorting any thing in the page the process triggered should not be stopped. Can we achieve this? If so how it can be? Kindly help me in this regard. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear Jana, Yes it is inside the div tag only below is the code for the same:
<div id="divPDF" runat="server" visible="false">
<iframe id="PDFframe" runat="server" style="height: 410px; width: 100%; overflow: auto;"
frameborder="0" scrolling="auto"></iframe>
</div>
The code behind is:
divFilter.Visible = false;
divPDF.Visible = true;
lnkBackToFilters.Visible = true;
PDFframe.Attributes\["src"\] = "ReportPDF.aspx";
Best Regards, M. J. Jaya Chitra
Dear All, In my web application, I have a IFRAME in a web page. When the user previews a document it is loaded in the IFRAME. When the user places the cusrsor outside the IFRAME in the page and presses "ESC" key, it closes the IFRAME. Can any one tell me how to get rid of this issue. Thanks a lot in advance
Best Regards, M. J. Jaya Chitra
Dear All, I have an ASP.Net applicaiton in which, the user can set some preferences and based on that the data is generated as an html report and I kept it in the server with the name "Test.htm", then I am loading the same in an iframe in that page. In my development environment the iframe is refreshed with new data whenever I am clicking on the "Generate" button. But when I uploaded, the html report is generated fine but it is not refreshed in the iframe for that I used the following codes in the javascript: 1. MyFrame.document.location.reload(); 2. MyFrame.src = "Test.htm" 3. MyFrame.document.location.href="Test.htm" Can any one help me to get rid of this issue? Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear All, I have a critical application which has been deployed in the dual core processor and took the log. The log shows very huge value for Process\%Processor Time than the total %Processor Time. I have a clarification, what will be the critical value or threshold for the Process\%Processor Time in a dual core system which has Windows 2003 server as its OS. Kindly provide me a link and value for this. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear Friends, Yes, I am having the dual core processor. Both of your post helped me a lot. Thank you a lot for the timely reply and help.
Best Regards, M. J. Jaya Chitra
Dear All, I have a critical application for which the performance has to be monitored. I used the performance monitor in Windows 2003 server to log the data. I have logged the counters of the Page file bytes and % processor time of the process / the service instance which has to be monitored along with the Processor % Processor time. When I was analyzing the log I hae found a strange issue, the Processors % Processor time is 88 % but the instances % Processor time is 175 %. Can any one tell me how this happens and how it is calculated? Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear All, I got the answer from the reply of "Brian Griggs" for the post "Events from ServiceHost instance ?". Thanks a lot.
Best Regards, M. J. Jaya Chitra
Dear Brian Griggs, Thanks a lot. I was also searching for the same and I got the solution from your answer. I would also like to thank the poster of this question. I have implemented and it is working fine. This is what I need too. :) Once again thanks.
Best Regards, M. J. Jaya Chitra
Dear All, I have a windows service, to which the user can communicate and the communication is logged in a datatable in windows service. For the communication I have used WCF and the implementation of the service contact interface is done in the Windows Service class itself. While testing I have found the below: 1. The service host is started and the communication is well established. 2. When the communication function is called I have observed that all the instance variables in the Windows Service class is null or with default value. Can any one tell me whether I can notify the Windows service when a data is received by the Service Contract hosted in the Windows Service? Or, can we have the value persistance in the Service contract as using the data in the data table only I need to check whether the data given is unique or duplicated.
Best Regards, M. J. Jaya Chitra
Dear All, I am a newbie to .Net Framework 3.5. I am interested in creating a web application using WPF. I have created a WPF Browse application. I don't know how to have it in my Virtual directory. Can any one help me in this regard? Thanks a lot in advance
Best Regards, M. J. Jaya Chitra
Dear All, Can any one tell me how to use WCF to communicate with 2 .Net windows services? Provide me some samples or related articles link. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear All, I am a newbie to mobile application and WCF. Can anyone tell me whether the XAML file created in the asp.net 3.0 can be called in the mobile web form? Kindly provide me a sample or the link related to the same. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
Dear All, I am a newbie to WCF. I have already implemented .Net remoting to communicate between the 2 .Net Windows Services in .Net Framwork 2.0 I want to use WCF for the same now in another project using .Net Framework 3.5. Can any one guide or give me links related to article / sample for the same? Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra
modified on Tuesday, March 24, 2009 7:37 AM
Dear Navaneeth, I have to send a message to a windows service, the windows service in turn sends a message to another external application which is not developed in .Net. For sending the message to external application it used the UDP, so the same UDP is used o receive the message from the web application too in the window service.
Best Regards, M. J. Jaya Chitra
Dear All, I have a web application from which I need to send an UDP datagram. When I send the data through Synchronous mode it is working fine. When I use asynchronous operation it is throwing the below error: "A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied " The code used is: Asynchronous:
senderOfMessage = new UdpClient();
IPEndPoint remoteEndPoint = new IPEndPoint(IPAddress.Parse(serverIP), Convert.ToInt32(serverPort));
byte\[\] message = ASCIIEncoding.ASCII.GetBytes("Test Message");
senderOfMessage.BeginSend(message, message.Length, new AsyncCallback(OnSend), remoteEndPoint);
Synchronous:
//senderOfMessage.Send(message, message.Length, remoteEndPoint);
Kindly help me to get rid of this issue. Thanks a lot in advance.
Best Regards, M. J. Jaya Chitra