Search

You searched for the word(s): userid:614251

Matching Posts

  • Re: Problem with Culture and UICulture

    Hi Mr_Menon, I don't know exactly what you meaning when you talk about two folders with different languages. The main objective of Resource in an application is to present information in order of the language of the user (or whatever you specify). So, when you use resx files to show text in greek or english you must have two resx files, one for each of them. In addition, you can have global resource files or local resource files. The first is something more global for the application, and local
    Posted to Localization (Forum) by jaloplo on 6/19/2008
  • Re: Javascript in master page

    Hi, Using validators wil have to work well, but this is not enough. In events method have to be called "Page.IsValid" method to know if all web controls has correct values. Check this.
    Posted to Client Side Web Development (Forum) by jaloplo on 4/3/2008
  • Re: enter text only in the textbox using javascript

    Hi, You can use a javascript regular expression to validate it instead of asp.net controls. This two web pages can help you: http://www.regular-expressions.info/javascript.html http://www.regular-expressions.info/javascriptexample.html
    Posted to Client Side Web Development (Forum) by jaloplo on 4/3/2008
  • Re: Javascript problem with the imagebutton

    Hi lovelyt, Could you try this code and check if the alert is shown??? AddButton.Attributes.Add( "onclick" , "javascript:alert('Hi, I am the image button');return false" );
    Posted to Client Side Web Development (Forum) by jaloplo on 3/13/2008
  • Re: adding data to an XML file

    Hi James25, Why don't you explore the System.Xml namespace??? Try to use the XmlDocument class to load your xml file and manipulate. After investigate this and google it, ask again in these forums.
    Posted to XML and XmlDataSource Control (Forum) by jaloplo on 3/12/2008
  • Re: JavaScript function name stored in db?

    Well, The first thing you have to do is be sure that you return from db the correct javascript function. After that, you have to execute it in the page. The thing is that your javascript functions are writing html code in the page and this makes you have to call it in the appropiate moment. Instead of this, you can have one div element and write in its HTML property all the text of the video choosen from db: function MyVideoWriteFunction(videoHTML){ document.getElementById('Id of the div'
    Posted to Getting Started (Forum) by jaloplo on 3/12/2008
  • Re: why do we need to use the Virtual and Override keywords?

    Hi sahajMarg, You have reason in your example, but you'd done a trap. What you've done isn't inheritance, it is an "overwriting" of a method, for example, if you call the base method (base.Hello()) have to throw an exception, because it hasn't one. Moreover, inheritance and polimorfism (is this the term?) are basic things in good programming, so I recommend to use them as possible on every application we work in.
    Posted to Getting Started (Forum) by jaloplo on 3/11/2008
  • Re: why do we need to use the Virtual and Override keywords?

    Hi sahajMarg, You have reason in your example, but you'd done a trap. What you've done isn't inheritance, it is an "overwriting" of a method, for example, if you call the base method (base.Hello()) have to throw an exception, because it hasn't one. Moreover, inheritance and polimorfism (is this the term?) are basic things in good programming, so I recommend to use them as possible on every application we work in.
    Posted to Getting Started (Forum) by jaloplo on 3/11/2008
  • Re: JavaScript function name stored in db?

    Hi dkirk, I don't understand what you want to do, how do you apply this search criteria, from server or in client side??? I don't know if this can be helpful for you but you can have an array of functions in which you can store all ths movie functions and select one of them by an index: < script type= "text/javascript" > var movieArray = new Array(); movieArray[0] = function(){ alert('First'); }; movieArray[1] = function(){ alert('Second'); }; movieArray[2
    Posted to Getting Started (Forum) by jaloplo on 3/11/2008
  • Re: Search range

    Well, I don't know what do you want to check in database, but I suppose that you have to get the minimum and maximum value from database before you insert the compare validator in Controls collection. Otherwise, can you explain me what you wanna do so I can help you more satisfactory. Sorry.
    Posted to Getting Started (Forum) by jaloplo on 11/2/2007
Page 1 of 26 (254 items) 1 2 3 4 5 Next > ... Last »