|
prasannavenkatesh wrote: Please any one reply me as soon as possible. its very urgent....
This is Bad
prasannavenkatesh wrote: IIS 6.0. I have tried with worker process idle time also in application pool.
Did you create separate Application pool for that? What are the configuration did u changed in Application Pool ?
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
hi,
I didnt create seperate application pool for that.In the Default Application pool, i have changed the settings and tested the same functionality based on the below link.
http://sanjaykattimani.blogspot.com/2007/02/net-session-timeout-settings-in-iis6-on.html
I have modified the option "ShutDown Worker processes after being idle for" into 5 minutes and restrated the IIS entirely and tested but no solution.
Now,i have reverted to default settings 90 minutes for that option.
Please help me if any other solution for this issue.
prasannavenkatesh
|
|
|
|
|
how could i know,
such a button onclick() event get fired in checking Postback
|
|
|
|
|
You can use Request.Form["__EVENTTARGET"] to get the control which caused the postack
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
thanx for reply yep its works ,yet have to add
UseSubmitBehavior="false"
to the button
|
|
|
|
|
hii...
i have taken buttonfield in one of the columns of a grid view rest of the columns are populated from the database.I want to perform some task on the buttonclick event how can i do this.
plz guide me....
thanks...
|
|
|
|
|
|
right, I have used this way!
|
|
|
|
|
That's cool !
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
use gridview edit and delete event and Google u will find so many example
Thanks,
Amit Patel
|
|
|
|
|
Amit, I guess he is not asking about the GridView Edit Button.
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
|
You are 7 min late
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
LOL i am Always Ur Follower Dude..!
If It Helps Click It as Answer
|
|
|
|
|
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
thanks...
|
|
|
|
|
Any Time DUDE
If It Helps Click It as Answer
|
|
|
|
|
Hi all,
I Develop one application in which i want to load XML file from client machine using javascript and process its nodes.
How can i load XML file which is stored at client machine into my application???
Thanks in advance...
Krishnraj
|
|
|
|
|
Javascript does not have the power to to access the file system.
you will need to use ActiveX which will read the file for you.
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
Hi manas,
First-of-all thanks for reply...
Do u have any idea regarding the kind of ActiveX available which read the xml file from client machine as i have a short deadline??
Thanks Again buddy..
Krishnraj
|
|
|
|
|
Krishnraj wrote: Do u have any idea regarding the kind of ActiveX available
var xmlDocument = new ActiveXObject("Msxml2.DOMDocument.3.0");
xmlDocument.load(src);
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
pass the xml string to this function and get the Document object. After that you can call GetElementsByTagName to get nodes
function(text) getXMLDocument {
try {
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = "false";
xmlDoc.loadXML(text);
}
catch (e) {
try {
var parser = new DOMParser();
xmlDoc = parser.parseFromString(text, "text/xml");
}
catch (e) {
alert(e.message);
return;
}
}
return xmlDoc;
}
var doc = getXMLDocument('<abc><item>xx</item><item>gg</item></abc>');
var elements = doc.getElementsByTagName('item');
I think this is what you needed.
|
|
|
|
|
Dear Experts,
I'm developing a web application & I'm using a thick-box as a container to display my popup page.
Issue: when ever the user clicks out of the pop up page, i.e pop will be having only 2 or 3 fields with 2 buttons and its displayed as a child page on the main page at the center of the screen, the pop up page gets closed when the user clicks anywhere out side the popup window.
Is there any way to restrict the mouse click outside the popup page? i.e i want to disable the mouse click outside the popup page.
would be very happy to receive the responses and any suggestions would be appreciated.
Thanks in advance
Murali..
|
|
|
|
|
|
Thanks for your reply...
a thick box class acts as a container, and i'm loading normal aspx page in that container.
http://www.webreference.com/programming/javascript/Thickbox/[^]
check the above link and click on any image in that and u'll get the clear picture of what i'm speaking about.
even in the above site example, when u click outside the popup image, it tends to vanish. (Thats my problem)
it should not close untill close button is clicked.
|
|
|
|