Hi yousuf, looks very strange. don't know how you done - Deleted both App1 and App2 from IIS and added C:\my application\app1 as "App2" can you give a try in this way - go to IIS and properties of your web application. under the Directory tab see the radio "The designated Directory" is selected and under application settings Remove and re-create your web application. -Ram.
ram1974
Posts
-
IIS - site renaming -
want asp.net menu to work on click instead of on mouse over.Hi all, I want the asp:menu control to work on click. By default it is working on mouse over. I got few button below the menu item and when the user is moving the mouse fast and trying to click the buttons below the menu, some time the menu is popped up and the user is clicking on the menu rather than on the mouse. It there any way I can make the menu work on click so, that I can avoid the user accidentally click on the menu. Thanks in advance. -Ram.
-
Check BoxHi senthil, You can grab all the values of the check boxes into a string something like below. 0,1,1,0,0 or false, true, true, false, false store it as a sting to the DB and when you read back use split() and get the values back. -ram.
-
how the time is removed in the dateHi Jagadeesh, DateTime yesterday = DateTime.Now; yesterday= yesterday.Date; the second line will set the date to mid-night, Hope this will help. -Ram.
-
how to convert the dd/mm/yyyy string date format to mm/dd/yyyy formatHi Jagadeesh, You may use CONVERT(CHAR(10), CURRENT_TIMESTAMP/date, 101) where 101 is UK date format(dd/mm/yyyy) 103 is dd/mm/yyyy.... etc., hope this will help. -Ram.
-
ObjectDataSource design questionHi, * As paul said you can implement paging logic so, that the Ods is not heavy. * why are you complecating the things? why don't you use 3 ods for 3 grid views -Ram.
-
ASP .Net Scheduling Calendar Controls... [modified]Hi, "I am doing a quick and dirty site for someone" - If you are willing to wind of the task in a cheaper way - use javascipt calender control which you can find at many places on the net and when the user selects a date get the date into a text field and the task on that date into another store them into db for future ref., -Ram.
-
Java Script doesn't work in my ASP.Net, wrong code?even this should do function confirmation() { if (document.getElementById("txtDescription").value == '') { return false; } return ( confirm('Changes have not been saved. Discard changes?') ); } -Ram
-
Windows explorer from Iframe - Problem.Hi Shog, Thanks for your reply. Yes my path is not "c:\". I am trying to allow batch upload by drag and drop mode. I am using this as the web controls will not allow drag and drop functionality.
-
Converting Word to PDF via internal websiteYes, it is a web based tool -Ram
-
Windows explorer from Iframe - Problem.Hi all, I am using to display a path in the browser using the script(this is quite simple can copy the below line to .html should work fine). <iframe id="DialogContent" src="c:\" style="background-color:transparent;" scrolling="auto" frameborder="0" allowtransparency="true" width="100%" height="100%"> Every thing is fine except that I don't want to display the left menu in the explorer window. How can I achieve this any property to set with it. Thanks in advance. -Ram.
-
Converting Word to PDF via internal websiteHi Kevin, If you haven't purchased PrimoPDF - you might be using the demo version? when you want to use the third party tool why are you making the call to open the word file? as in the line below. Microsoft.Office.Interop.Word.Document aDoc = WordApp.Documents.Open(ref fileName, ref missing, ref readOnly, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref isVisible, ref missing, ref missing, ref missing, ref missing); Generally the third party s/w providers will provide some user friendly mechanism such as below. PDFCreator.GetInstance().Convert(SrcFilePath,TargFilePath); I am using easyPDF for similar purpose, I am not sure of PrimoPDF ;P . It should be simple. I think you need to go through the document. -Ram.
-
How to get Client ConfirmationHi Christian Graus, Thanks a lot for your response. -Ram
-
[Message Deleted][Message Deleted]
-
How to get Client ConfirmationHi all, I am developing a asp.net c# web application. In which on a specific condition in a code behind page I want to take the client confirmation, How can I achieve this. eg: If a client has given some input. I will check the input is already exist using the code behind(server side) and then I want to take a confirmation "does he want to overwrite his new input?". I can't do the checking using the client side script. any help is appreciated. Thanks in advance. -Ram.
-
Windows foms control in Web page. a simple problem when with web pagesHi Michael, Thanks you very much, I will give a try with Flex. Thanks a lot once again. -Ram.
-
Windows foms control in Web page. a simple problem when with web pagesHi Michael, Thank you very much for your response. This is a kind of task I am looking at. But, I doubt my co., will allow me to use any third party S/w. Do, you think I can solve this problem in a any way? -Ram.
-
Windows foms control in Web page. a simple problem when with web pagesHi Michael, Yes you are right I want to drap and drop the file from Explore to the web page. Yes it may be a strange requirement. I tried my luck with web applications then later I thought to bet on mixing both the web applications and Windows, by using the windows control libarary inside the web page. When I am able to drag and drop a single file, it should allow me drag and drop multiple files also - am I right? But, it is not allowing me to drop multiple files. Am I mising something? Thank you Michael for your response..... -Ram.
modified on Thursday, December 27, 2007 3:09:55 AM
-
Windows foms control in Web page. a simple problem when with web pagesHi Michael, Then how do I get similar functionality? The web controls will not allow the drag and drop functionality so, how do I achieve it? -Ram
-
Need help with html client controls in asp.netHi Suman, The possibility is that you can do it using the Javascript. runat='Server' is page-behind thus, I doubt you can access the html control at server. -Ram.