I am not sure but this can help... can you please make sure that ASPNET user account have appropriate access rights to the file?
chandler83
Posts
-
Help me please -
Table alignment - urgent help needed please..Hi I am new to Asp.net.... I am converting a htm files in to aspx files for localization issues. I have a table with width=100% and height = 100%. when I open the html page inside a fixed frame window. The table is not filling the whole window. I want the last of the table to be on the bottom frame of the window. The below is the piece of my table. At present the last of the main table is displayed above the window size. I want the empty space between the tr and the window size to be removed.... any help is highly appreciated....
-
Alignment of controlssuperb that works.... any idea how to disable the Verticle scrolling inside the div element? Million advance thanks..
-
Alignment of controlsI have a asp.net page which i open it inside a form with fixed layout. Once the form is loaded the inside controls exceeds the form size, and i am not able to access the controls. I disabled the body scroll=no, since this is an requirement. Is there any other way to bring the controls inside the form without altering the form size. thanks in advance.........
-
Drag and Drop control neededhi... i am designing a toolbox as like visual studio toolbox with some controls in it.... i have designed a panel too... now i need a control can be fixed in the toolbox panel... the control that i am trying to add(inside the toolbox panel) should have drag and drop funcionality.... please advise me which control i can use inside the toolbox panel.... no tree view control suggesions plz..... my application look and feel should be same like visual stiod's..... the control which i need should support image and name field and should have drag and drop options.. i am using 2.0/3.0 framework... thanks in advance...
-
Menu bar control in aspx pagehi all. i am designing a page where we need to show a Menubar and Toolbar controls on top of the page..... Menu bar have its own command like File, Edit, View, Tools, etc... each menu will have its own sub menus toolbar its just the representation of some commands tht r available in the file menu... like save button..... i need these two Menu bar and tool bar as independent ones... so tht i can extend it later..... Any ideas please..... Menubar should be like client side menubar... no postback should happen when the user views it.... :rolleyes: thanks in advance.......
-
getting the value from IFramehi i have a 2 aspx pages. parent page has a IFRAME tag inside which i open the child page... in the child page i show a asp calender control, on selecting a calendar control i need to get the selected date to the main parent page text box. it is not happening now.... //////////// parent.aspx............ function Show() { document.getElementById('myFrame').src= "/workingwebsite/calendar.aspx?formname=frmCalendar.txtDate"; document.all.myFrame.style.visibility="visible"; } any help plzzzzz..................thanks a million in advance.......
-
NUnit 1.5.1 for .Net 2.0Hi, I am using NUnit 1.5.1 for testing ASP.Net 2.0 project. I have a anchor button which has postback events. There is a javascript embedded in to it. That java script should return me a href value. My java script: "javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("OKButton$_Button", "", true, "", "", false, true))" It seems NUnit is not working correctly for 2.0 framework versions. Can you all plz help me. :(( Is there any other equivalent tools for testing ASP.Net 2.0 pages. Thanks in advance.
-
Regular expression neededhi this will be my input string, "javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(\"OKButton$_Button\", \"\", true, \"\", \"\", false, true))" can anyone please give me a matching regex for this string. the values in the bracket changes but the format remains the same... i tried with this Regex but its not working string postBackPattern = @"WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions\('(?.*?)', '(?.*?)', (?.*?)(?.*?)\)\)"; please do help me... its urgent :(( thanks in advance...
-
Loading 500000 rows in to a datatablei am making a connection to a text file thro ODBC connectivity and filling the datatable.... tht txt file may contain records from 5000 to 500000+ i need to loop thro each record and do some processing...?
-
Loading 500000 rows in to a datatablehi i am loading 500000 records in to a datatable and going thro each and every record. It is taking a large amount of time . Is there any possibility or efficient ways in which we can handle it easily....less memory resouse utilization is must plzzzz help me........ thanks.....:sigh:
-
Using Oledb dataadapter c#Hi, i am using c# and sql server 2000. i want to execute this below query in my application using oledb dataadapter. sql query: select preferencevalue from ParticipantPreference for xml raw; (also the above column contains an XML data as a value in it.) this query gives me an xml formatted correct output when i use SQL dataadapter. If i use oledb dataadapter my result is in BYTE array format... plz help:(( me.
-
folder access writesin my application i can drag and drop folders and files....... problem is: if i drag and drop a folder which has no access writes... how can i differentiate tht folder from a normal folder. Directory.Exists is giving me true for both the case... I am getting this System.UnauthorizedAccessException. is thr any property which differentiates between these folders.:confused:
-
folder and file differenceThank u both for guiding me.
-
read files from folderas Aaron said, assign the retrived file array to a fileinfo object and use the properties to get the filename or extension. FileInfo fileinfo = new FileInfo(files[0]); long sFileSize = fileinfo.Length;(gives u the file size) fileinfo.Directory etc.......
-
folder and file differencehow to identify whether a dropped object in my application is a file or a folder. atpresent, i am using File.Exists method and Directory.Exists. Is thr any other way to find out. Actually if we rightclick a file or folder and select properties... it will tell us whether it is a file or folder(Type: FileFOlder or File) any ways to retrive tht information. I am using C# application.
-
trim away the first letter in string?hi , string s = "0721234567"; if(s.StartsWith("0")) s= s.Replace("0","+27"); cheers.
-
Regarting tree view Drag dropis it possible to add a folder in a tree view, if i drag and drop a folder from my desktop or local drives to my application tree view control. Plz help me... if it is possible? how i have to proceed.... thanks in advance.........
-
Capturing the filenamethank u.... its perfect......... thank u.... on the track again.......:laugh::):rose:
-
Capturing the filenamethank you pramod. I am still facing some problems.... i enabled the allow drop property of that list view control. and when i drag an item from the desktop to that control nothing is happening. tht particular event is not firing... any idea what i have to do next.... plzz thanks again...:((