Search

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

Matching Posts

  • Re: How do I scroll vertically the top 5 news titles on Gridview

    there a many wats to do this by javascript, but if u wish a slight movement in text, yous should use css for this purpose. just write a class for that container and provide padding or margin to the text. and write on hover for that class like: .classname span:{float:left; padding: 5px;margin:2px;font-size:12px;} .classname span:hover{float:left; padding: 2px;margin:5px;font-size:14px;}
    Posted to Client Side Web Development (Forum) by nitindhiman on 11/13/2009
  • Re: Email Webpage

    for this purpose you should use .net email fecility or cdonts. from where you can send unlimited amount of data to any use. there you can use inline style also. Simply write a code in .net to send email and call that code on button click.
    Posted to Client Side Web Development (Forum) by nitindhiman on 11/13/2009
  • Re: call c# method from javascript

    if u want to fire an event like button click, tht can be done directly by buttonid.clicki(). and if u wish to call a methos, thn one way is to use json for the same. u need to include jquery for the same and it requires .net 3.5. like: [WebMethod] public static string yourwebmethodname(string str) { ..... } and var URL = "yourpagename.aspx/yourwebmethodname"; var options = { type: "POST", contentType: "application/json; charset=utf-8", dataType: "json", url
    Posted to Client Side Web Development (Forum) by nitindhiman on 11/13/2009
  • Re: redirect with <noscript> or hide controls..

    u can't execute javascript function, as it javascript is disabled. i found following link: http://www.plus2net.com/javascript_tutorial/javascript_support.php
    Posted to Client Side Web Development (Forum) by nitindhiman on 11/13/2009
  • Re: Select all text in textbox on click.

    Hi, I exectly don't know ur problm, but as u r saying tht function is calling but u r not getting the desired result, just view the source of the page and match the client id of the textbox with the id of tht in the called function. Hope it helps... n aaj saturday hai, kaam karne ka din nahi hai...
    Posted to Web Forms (Forum) by nitindhiman on 9/26/2009
  • Re: How to do this?

    Hi, I'll suggest to use javascript based calenders. because they are lightweight and does not create viewstate your dropdowns will make a page heavier, you can find 1000s javascript calender over the net, but if then also you wish to use dropdown then then you need to write javascript function for onChange event of these dropdowns. let me know if you need some javascript code for that.
    Posted to Web Forms (Forum) by nitindhiman on 8/11/2009
  • Re: Validating url QueryString Error

    Hi Satish, Do not use such kind of scripts in url, better if you use some additional parameter, like status or somthing else and then check that on page load of landing page and from there you can do your desired task, like of you wish to fire some javascript thn u can use onLoad function of javascript and then perform your operation depending upon the value in querystring...
    Posted to Web Forms (Forum) by nitindhiman on 8/11/2009
  • Re: how do i upload a custom scroll in my webpage.....

    hi, You can following style properties: .MyScrollClass{ float : left ; height : 200px ; overflow : auto ; width : 100px ; } and then apply this class to any div u wish to add scroll if the height increases 200px. Like: <div class="MyScrollClass"> Your content.... </div>
    Posted to Web Forms (Forum) by nitindhiman on 8/11/2009
  • Re: How to validate FCKEditor.

    hi, You can use javascript to validate length of the content of a FCK editor Like: function checkform() { var ctr = document.getElementById('<%=fckEditor.ClientID%>'); if (ctr != null) { if (ctr.value == "") { alert("Enter some text"); return false; } } }
    Posted to Web Forms (Forum) by nitindhiman on 8/11/2009
  • Re: Can you open a new window from a post back?

    Hi PLBlum, I rarely need such kind of functionality but it is a gud topic, I agree with you that on each n every request the browser gets a new HTML based on the request made by that because HTTP is a stateless protocol n can not mentain the state. And as you are saying that we can use registerClientstartUpScript to regester a script while page is loading, I hv 2 question for you, can't we perform the same functionality on onLoad event of the window, Like: window.onload = function() { alert('hello'
Page 1 of 14 (137 items) 1 2 3 4 5 Next > ... Last »