I have 3 tables which are linked to each other with Primary and Foreign key relationship. When I use the datasource combinely for all the 3 tables unable to edit the records and Add option is not visible. What should be the resoultion
Mahendra
I have 3 tables which are linked to each other with Primary and Foreign key relationship. When I use the datasource combinely for all the 3 tables unable to edit the records and Add option is not visible. What should be the resoultion
Mahendra
Yes, I understand you concern but do we have any technique to overcome the time issue.
Mahendra
Setting ACE is very slow for folder with many files and subfolders. My folder has 35602 files and 648 subfolders and SetAccessControl method needs 30 minute to remove a user from this folder. I am removing a user from the security tab of folder using following code. DirectoryInfo dirInfo = new DirectoryInfo(folderPath); DirectorySecurity fSecurity = dirInfo.GetAccessControl(AccessControlSections.All); fSecurity = CanonicalizeDacl(fSecurity); fSecurity.RemoveAccessRule(new FileSystemAccessRule(coworkerAccount, accessRight, AccessControlType.Allow)); dirInfo.SetAccessControl(fSecurity); SetAccessControl method takes a long time when the folder having many files.
Mahendra
i need to Implement Virtual scroll grid view with fix header. need to show the data on demand of scroll movement.
Mahendra
updatepanel is not to show the progress. Instead the complete gridview and serarch button is inside updatepane.
Mahendra
Actually I have My gridview and search button inside UpdatePanel. so on search button click UpdatePanel took a long time.
Mahendra
Thanks for the Reply, You are right. I have client requirement that, I can have only vertical scrollbar. I am not worried about the slow page listing. But i am concerned when i search a single record from database and bind a single row to the grid. then the page took a long time to accept the post request. I have a textbox for search text and dropdownbox for search criteria. so when i click on Search button, The page took a long time to accept the post request.
Mahendra
If there is large volume of data in Gridview. and no paging in Gridview. If i click the search button to search the text then the search is slow.
Mahendra
how to access first page control values in second page without using Server.Transfer, Previouspage directory in asp.net
Mahendra