Forum: ASP.NET Sep 18th, 2007 |
| Replies: 1 Views: 1,452 Re: Problem with Treeview control...... Hi Thiru....
Which version r u used in u r Proj?
I think u r using VS 2003 .....
Here U add only Parent Node ..
U Should mention child Nodes....
If u add child node then u will get... |
Forum: ASP.NET Sep 13th, 2007 |
| Replies: 6 Views: 6,080 Re: how to set session timeout Hey use this meta tag after the title tag in your
.aspx page
<meta http-equiv = "Refresh" content = "5" />
It will refresh automatically after some seconds that u mentioned in content property of... |
Forum: ASP.NET Sep 13th, 2007 |
| Replies: 1 Views: 1,463 Load Report Failed Hi Guys
I used Crystal Reports in my projects.It shows "Load Report Failed" oftenly...If it occurs i just do restart the IIS service then it will work fine ....i do it regulary but i need... |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 6 Views: 6,080 Re: how to set session timeout hey use the following code in the web.config file in u r application
<session timeount="10000" />
Where 10000 in minutes...... |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 2 Views: 941 Re: find listbox from client side var Val = document.getElementById('ListBox1').value;
Used For getting value form listboz on clienside
We Can also control the validation on clientside itself ... but i know u r requirement(example)... |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 3 Views: 367 |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 4 Views: 421 Re: downloading text through asp.net Hi coolshail...
Try out with this
Response.Clear()
Response.AddHeader("content-disposition", "attachment;filename=Text1.txt")
Response.AppendHeader("Content-disposition", "attachment;... |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 6 Views: 6,080 Re: how to set session timeout Hey .....
Use <sessionState timeout="10000"/> tag for session timeout Property
important : Remeber 10000 in seconds....
Use Session_End Event which is available in Global.asax file..... |
Forum: ASP.NET Sep 11th, 2007 |
| Replies: 3 Views: 868 |