0
votes
ASP.NET TreeView and Selecting the Selected Node
When you're adding nodes to the tree in the _TreeNodePopulate() event, set the .SelectionAction property on the node.
TreeNode newCNode;
newCNode = new TreeNode("New Node");
newCNo …
0
votes
ASP.NET: System.UnauthorizedAccessException - Access to Path Denied
Check that the image file (jpg) you're writing to the tempStorage has the proper permissions for the webuser account(aspnet or iis_wpg). You can set the TempStorage directory to replace permisson …
2
votes
WebResource.axd - Invalid ViewState
MS has an open bug report as of 6/14/09 reguarding this issue:
…
0
votes
ASP.Net - TableAdapter is returning phantom results
Check the ExcuteMode property of the tableAdapter for the query. Be sure it is set to "Reader". There are 3 options for ExecuteMode:
Reader - Returns rows of data
Scalar - …
