摘要: var nav = navigator;var module = { Plugins: { list: function() { var list = []; if (nav.plugins) { for (var i = 0, l = nav.plugins.length; i = minVersion; i--) { try ... 阅读全文
posted @ 2014-04-04 17:17 happyu0223 阅读(195) 评论(0) 推荐(0) 编辑
摘要: jquery vticker (vertical news ticker)I want to share with you my jquery plugin. I have made this plugin for easy and simple vertical news automatic scrolling. It will calculate height automaticaly, so no styling needed (added an option to set height manually). Just grab it and use it – so simple. Do 阅读全文
posted @ 2014-04-04 15:39 happyu0223 阅读(425) 评论(0) 推荐(0) 编辑
摘要: AJAX - Asynchronous JavaScript and XMLIt allows us to send request OR Post data to a server without submitting the whole page so it's called AsynchronousThe language we use for it is JavaScriptThe format of the data to be exchanged between the server and client is XMLThat's why its called As 阅读全文
posted @ 2014-04-02 19:32 happyu0223 阅读(227) 评论(0) 推荐(0) 编辑
摘要: Click Here to Insert function IFAdd() { ifobj = window.frames.iframe1; var e = document.getElementById("DropDownList1"); bookmark = e.options[e.selectedIndex].value; // bookmark = document.getElementById('HiddenField1').value; ... 阅读全文
posted @ 2014-04-02 18:55 happyu0223 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Here I will explain how to use Ajax Tabcontainer in asp.net and how to change the appearance of TabContainer using CSS styles in asp.net.Description:I have one web page that page contains lot of information about user like user profile details, job details and new user registration details because o 阅读全文
posted @ 2014-04-02 13:27 happyu0223 阅读(358) 评论(0) 推荐(0) 编辑
摘要: VB:Here SaveImage is the method for Re-size the image with Transparancy......Public Shared Sub SaveImage(imgheight As Integer, imgwidth As Integer, imgfilename As String, path As String, upImage As FileUpload) Dim width As Integer = imgwidth Dim height As Integer = imgheight Dim fileName As String = 阅读全文
posted @ 2014-04-02 09:39 happyu0223 阅读(214) 评论(0) 推荐(0) 编辑
摘要: In this Article, I am explaining how to make use JavaScript in the ASP.Net GridView control and make it more elegant by reducing postbacks. Functions such as 1. Highlighting selected row2. Check/Uncheck all records using single checkbox.3. Highlight row on mouseover event.The above three functions c 阅读全文
posted @ 2014-04-01 16:19 happyu0223 阅读(278) 评论(0) 推荐(0) 编辑
摘要: In one of my previous articles I explained Export GridView with Images from database to Word, Excel and PDF FormatsIn this article I am explaining how to Export GridView to Microsoft Word, Microsoft Excel and Portable Document Format (PDF) which has images and pictures in it. Here I am exporting a G 阅读全文
posted @ 2014-04-01 16:12 happyu0223 阅读(503) 评论(0) 推荐(0) 编辑
摘要: TheGridViewis populated from code behind inPage_Loadevent and using jQuery we can re-order jQuery row. In every row ofGridView, there will beUpArrowbutton andDownArrowbutton. ClickingUpArrowbutton, the associated row will be moved up and clickingDownArrowbutton, the associated row will be moved down 阅读全文
posted @ 2014-03-31 22:26 happyu0223 阅读(363) 评论(0) 推荐(0) 编辑
摘要: ALTER PROCEDURE [dbo].[GetAll]ASBEGIN SET NOCOUNT ON; SELECT * FROM Customers SELECT * FROM Orders SELECT * FROM ProductsENDThe Stored PROCEDURE retur... 阅读全文
posted @ 2014-03-31 16:05 happyu0223 阅读(249) 评论(0) 推荐(0) 编辑