Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

ram1974

@ram1974
About
Posts
26
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • IIS - site renaming
    R ram1974

    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.

    Web Development help windows-admin question

  • want asp.net menu to work on click instead of on mouse over.
    R ram1974

    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.

    Web Development csharp asp-net

  • Check Box
    R ram1974

    Hi 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.

    ASP.NET database tutorial question

  • how the time is removed in the date
    R ram1974

    Hi Jagadeesh, DateTime yesterday = DateTime.Now; yesterday= yesterday.Date; the second line will set the date to mid-night, Hope this will help. -Ram.

    ASP.NET

  • how to convert the dd/mm/yyyy string date format to mm/dd/yyyy format
    R ram1974

    Hi 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.

    ASP.NET tutorial

  • ObjectDataSource design question
    R ram1974

    Hi, * 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 database question css sql-server design

  • ASP .Net Scheduling Calendar Controls... [modified]
    R ram1974

    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.

    Web Development question csharp css

  • Java Script doesn't work in my ASP.Net, wrong code?
    R ram1974

    even this should do function confirmation() { if (document.getElementById("txtDescription").value == '') { return false; } return ( confirm('Changes have not been saved. Discard changes?') ); } -Ram

    Web Development csharp java asp-net tools question

  • Windows explorer from Iframe - Problem.
    R ram1974

    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.

    Web Development html tools help question

  • Converting Word to PDF via internal website
    R ram1974

    Yes, it is a web based tool -Ram

    Web Development csharp help visual-studio com announcement

  • Windows explorer from Iframe - Problem.
    R ram1974

    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.

    Web Development html tools help question

  • Converting Word to PDF via internal website
    R ram1974

    Hi 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.

    Web Development csharp help visual-studio com announcement

  • How to get Client Confirmation
    R ram1974

    Hi Christian Graus, Thanks a lot for your response. -Ram

    ASP.NET csharp question asp-net sysadmin tools

  • [Message Deleted]
    R ram1974

    [Message Deleted]

    Web Development

  • How to get Client Confirmation
    R ram1974

    Hi 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.

    ASP.NET csharp question asp-net sysadmin tools

  • Windows foms control in Web page. a simple problem when with web pages
    R ram1974

    Hi Michael, Thanks you very much, I will give a try with Flex. Thanks a lot once again. -Ram.

    Web Development help question

  • Windows foms control in Web page. a simple problem when with web pages
    R ram1974

    Hi 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.

    Web Development help question

  • Windows foms control in Web page. a simple problem when with web pages
    R ram1974

    Hi 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

    Web Development help question

  • Windows foms control in Web page. a simple problem when with web pages
    R ram1974

    Hi 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

    Web Development help question

  • Need help with html client controls in asp.net
    R ram1974

    Hi 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.

    Web Development question csharp html asp-net sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups