Search

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

Matching Posts

  • Launch Announcement: DOTENET (Digg Clone)

    Its give me immense pleasure to announcement .NET portal - DOTENET (URL: www.dotenet.com). It’s "Digg" style web application dedicated to .NET and relative technologies. This portal will serve as central hub to share articles, tutorials, blog post etc. When I was planning to create this portal two months back, I was sure that first release of this project will have minimum "must to have" features and later I will add features which are "good to have". And that’s why you will notice many blank pages
    Posted to Announcements (Forum) by firoz.ansari on 3/18/2007
  • Re: Opening a pdf file in a new window

    As far as my understanding goes, this is client side setting to display Acrobat Reader plugin in browser itself. You might want to check following links: http://www.adobe.com/support/techdocs/315029.html http://www.geocities.com/rlcomp_1999/acrord.html
  • Re: Table height is not being displayed at 100%................

    Ok, In your master page, trying removing DOCTYPE from the page, table will then render properly in page. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
  • Re: Client side validation

    In validateFields function, you can check all validation for desired controls and if all of validation comes true then only you have to return true from the function (it will post the page), if any of your validation violated then you just need to return false from this function, and there will be no post back in this case. Having said that, as user can disable javascript, it’s always recommended that you should also put server side validation before inserting records in database.
  • Re: Gridview height="300px" works but height="40%" doesn't work

    Trying removing DOCTYPE from the page, grid will then render properly in page. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
  • Re: Strange table deform issue

    Trying removing DOCTYPE from the page, it will properly render in ASP.NET as well. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> It’s not a bug but it’s a feature! :)
  • Re: window.close();

    If you saying that application open another instance of browser when you click any button in child window, then I guess you need to set following inside HEAD tag of the child window. <HEAD> <title>WebForm2</title> <base target=_self> </HEAD>
  • Re: ASP.Net w/ javascript

    How do you get values of TextBox controls and supply them to client-side function parameter? You can use getElementById object to access any control in the page: document.getElementById ('TextBox1').value=’some text’; or like: alert(document.getElementById ('TextBox1').value); How do you display the results back to a server label control for display? For that you have to store the result in hidden field, and then you can access this field at server side in order to get its value. <INPUT id="HiddenUserID
  • Re: Hide the button when printing

    Here is the small code snippet: <span class="hide_print"> <asp:Button id="Button1" style="Z-INDEX: 101; LEFT: 24px; POSITION: absolute; TOP: 24px" runat="server" Text="Button"></asp:Button></form> </span> <HEAD> <title>WebForm2</title> <style media=print> .hide_print {display: none;} </style> </HEAD> If you take print out of this page, button Button1 will be hide. I hope this help.
  • Re: How to make pop up?

    Visit @ http://www.firoz.name/2006/04/27/implementing-dialog-box-in-aspnet-based-web-application
Page 1 of 70 (694 items) 1 2 3 4 5 Next > ... Last »