Hi, We have an application which uses the Microsoft IE Web Controls (TabStrip in particular). When this application runs on a local machine, the control is rendered perfectly. When we try to access the application from any other machine, the control does not render and only the tab text is shown. Please help. Thanks, Susmitha.
SusmithaC
Posts
-
Problem with Microsoft Internet Explorer Web Controls -
Problem with Microsoft Internet Explorer Web ControlsHi, We have an application which uses the Microsoft IE Web Controls (TabStrip in particular). When this application runs on a local machine, the control is rendered perfectly. When we try to access the application from any other machine, the control does not render and only the tab text is shown. Please help. Thanks, Susmitha.
-
Hash Storage ProblemHi All, Am creating a hash storage on the system using the following code. The following line actually creates the virtual directory with the guid name in the Documents and Settings/Administrators/LocalSettings/ApplicationData/IsolatedStorage directory... IsolatedStorageFile isoStore = IsolatedStorageFile.GetStore( IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null ); Further, I create a hash.dat file in the above directory. This was working fine in the previous server. Currently, the server is changed and am facing this. Must have something to do with the system / machine settings. Have pasted the error below. Please help! Many thanks in advance, Susmitha. ERROR: Server Error in '/WeddingWarehouse' Application. -------------------------------------------------------------------------------- Unable to create the store directory.[The system cannot find the file specified. ] Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.IsolatedStorage.IsolatedStorageException: Unable to create the store directory.[The system cannot find the file specified. ] Source Error: Line 291: private void LoadData() Line 292: { Line 293: IsolatedStorageFile isoStore = IsolatedStorageFile.GetStore( IsolatedStorageScope.User Line 294: | IsolatedStorageScope.Assembly |IsolatedStorageScope.Domain , null, null ); Line 295: if ( isoStore.GetFileNames( settingsFileName ).Length == 0 ) Source File: c:\inetpub\wwwroot\weddingwarehouse\productpage.aspx.cs Line: 293 Stack Trace: [IsolatedStorageException: Unable to create the store directory.[The system cannot find the file specified. ]] System.IO.IsolatedStorage.IsolatedStorageFile.nGetRootDir(IsolatedStorageScope scope) +0 System.IO.IsolatedStorage.IsolatedStorageFile.InitGlobalsNonRoaming(IsolatedStorageScope scope) +42 System.IO.IsolatedStorage.IsolatedStorageFile.GetRootDir(IsolatedStorageScope scope) +98 System.IO.IsolatedStorage.IsolatedStorageFile.GetGlobalFileIOPerm(IsolatedStorageScope scope) +208 System.IO.IsolatedStorage.IsolatedStorageFile.Init(IsolatedStorageScope scope) +37 System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(IsolatedStorageScope s
-
Popup windowI am opening a new popup window on a button click using window.open("new.aspx") and close the same using window.close() on some updations in the popup window. Now, the second time i open the popup window, the Page Load event of the popup page is not getting called the second time... but the Page load has to be called for the changes to reflect... Can someone tell me how this can be done and why is this happening? Sush