Jump to content

JobPencil

Members
  • Posts

    13
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.jobpencil.com

JobPencil's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Try This Link It may Help you... http://www.onextrapixel.com/2011/06/03/how-to-create-a-horizontal-dropdown-menu-with-html-css-and-jquery/ Thanks
  2. JobPencil

    faveicon

    <!DOCTYPE htmlPUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"><html lang="en-US"><head profile="http://www.w3.org/2005/10/profile"><link rel="icon"type="image/png"href="http://example.com/myicon.png">[…]</head>[…]</html>
  3. Add this meta tag in your site <meta http-equiv="Content-type" name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width"> or <meta name="viewport" content="width=1030, maximum-scale=1.0" />
  4. Try This Also Update tablename Set Name = (ISNULL(columnName1,'') + ' ' + ISNULL(columnrName2,'')) Where colum1='string';
  5. Try This Video Tutorial http://www.youtube.com/watch?v=7nNLzBctgSk&list=PLB3KOMH-9fLQa7eyCm7tzTEq9Xc8euI-Y
  6. I think Notepad++ is Best HTML Editor.
  7. JobPencil

    ASP.NET

    Try This Video Tutorials. It may help you http://www.youtube.com/watch?v=aLyBE6rJdD4&list=PL6n9fhu94yhXQS_p1i-HLIftB9Y7Vnxlo
  8. You need to use gridView.FindControl("controlName"); to get the control in the row. Example: //Find textbox control TextBox txtname = (TextBox)e.Row.FindControl("txtName"); string Name = txtname.Text;
  9. Try This Link... http://www.onlinebuff.com/article_step-by-step-select-insert-update-and-delete-using-aspnet-c-and-adonet_32.html
  10. Refer This article... It may Help you http://msdn.microsoft.com/en-us/magazine/dd942833.aspx http://www.webdevelopmenthelp.net/2013/10/Difference-between-ASP.NET-WebForm-And-ASP.NET-MVC.html
  11. ASP.NET page framework also supports an automatic way to associate page events and methods. If the AutoEventWireup attribute of the Page directive is set to true (or if it is missing, since by default it is true), the page framework calls page events automatically, specifically the Page_Init and Page_Load methods. In that case, no explicit Handles clause or delegate is needed.
  12. Refer These Links also http://www.htmlgoodies.com/beyond/javascript/article.php/3471331 http://stackoverflow.com/questions/16293977/creating-a-shopping-cart-using-only-html-javascript
×
×
  • Create New...