Skip to main content

Posts

The GridView fired event PageIndexChanging which wasn’t handled (Solved)

If you’ve set a gridviews AllowPaging attribute to “true”, you’ll notice the following error; The GridView fired event PageIndexChanging which wasn’t handled To setup paging with Gridviews, you also need to set the page index property to the new page that you wish to view. This is extremely easy to do. See below for a code example written for aspx page and Code behind page. At aspx page <asp:GridView ID="GridView1" runat="server" Width="800px" AllowPaging="True" PageSize="100" OnPageIndexChanging="gvList_PageIndexChanging"> At Code behind page protected void gvList_PageIndexChanging(object sender, GridViewPageEventArgs e)     {                          bindGrid(); // your code to bind the grid view eg sql connection                  GridView1   ....

Sent item in horde panel (Solved)

The sent item folder is not created automatically in Horde Webmail. You will need to create the sent Item folder to save the sent mails. You can take below steps to create the sent items folder for the mailbox. 1. Login to the mailbox though IMAP 2. Click on "Mails" and then select "options" tab. 3. Select "Personal Information" link under the general option. 4. Then select the check box "Save sent mail" and select "create a new sent mail folder" option. 5. Provide the name to the sent items folder and Save the changes. This will make the sent item folder into the mailbox. And when you compose any mail please check there are  ---option to save the copy of message in sent item  ---option to save the attachment in sent item

By pass single quote or special character in ck editor or fck editor in any language

By pass single quote or special character in ck editor or fck editor in any language like asp.net , php etc   whenever we are using ckeditor or fckeditor we are able to pass the data successfully but if single quote  '  or symbols like '|>|<|\\+ is present in our content then it will not save the data I search a lot for the solution of this topic.  Every post is provide some rumors but finally after using ck editor for long time, i found the solution. so friends now you can pass any type of data in fckeditor or ck editor  ------------------------------------------------------------------------------------------------------------------------ AdditionalNumericEntities With this setting, you can define a set of characters which will be translated to their relative numeric entities in the output HTML. This is quite useful if you don't want single quotes (') to be inserted in the text (being transformed to ′):...

List of categories of awesome effects css3 and javascript and Video Players

Here is the list of categories of awesome effects css3    Creative Link Effects  http://tympanus.net/Development/CreativeLinkEffects/ Website with video Player http://www.videojs.com/ http://www.w3schools.com/html/html5_video.asp http://dev.opera.com/articles/html5-video-flash-fallback-custom-controls/ Website with video on home page http://www.bienvillecapital.com/ http://www.theqcamera.com/ Creative Shapes pure css http://codepen.io/rachel_web/pen/pjzowB Create your own css 3 styles effect http://www.createcss3.com/ http://matthewlein.com/ceaser/ Create css for Sprite Images (Retina Friendly) http://www.spritecow.com/ http://spriteme.org/ Creaive and best websites  http://interactivewall.ru http://www.gsconto.com/chronicles/how-it-all-began.html http://www.fusionessence.com/ http://www.designzzz.com/ http://hverdagsreisen.no/  (best) HTML 5 Unicode character codes http://unicode-table.com/en/#003C Progress bar  h...

Open PDF Files in Web Brower Using ASP.NET

Step 1: First of all create new website  Step2: Add existing pdf file to your website Step3:  After that open Default.aspx page and now write the following code      < html xmlns ="http://www.w3.org/1999/xhtml"> < head runat ="server"> < title > Open PDF File in Web Browser in asp.net </ title > </ head > < body > < form id ="form1" runat ="server"> < div > < asp : Button ID ="btnOpen" Text ="1st Way to Show PDF In Browser" Font-Bold ="true" runat ="server" onclick ="btnOpen_Click" /> < asp : Button ID ="btnpdf" Text ="2nd Way to Show PDF In Browser" Font-Bold ="true" runat ="server" onclick ="btnpdf_Click" /> </ div > </ form > </ body > </ html >   Now open Default.aspx code behind file and add the ...

change the default font of Sticky Notes

Navigate to:  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts First, export that key so you have a backup. Find  Segoe Print (TrueType) Change the value to the file name of any other font that you wish to use that is already installed (navigate that registry key to find others). Do the same for the "Segoe Print Bold (TrueType)" and match it to the Bold version of this font. Then, log out and back on. if output will look like this then you are done

Working with Ajax UpdatePanel in asp.net

During work with our applications if we entered any values in textbox controls and click on a button in form we will see full postback of our page and we will lost all the controls values whatever we entered previously this happend because of postback. If we want to avoid this full postback of page and round trip to server we need to write much code instead of writing much code we can use ajax updatepanel control. Ajax updatepanel will help us to avoid full postback of the page i.e., avoid refresh of the whole page content with postback and stop flickering of the page which is associated with a postback and allows only partial postbacks. By using Ajax updatepanel we can refresh only required part of page instead of refreshing whole page. Ajax updatepanel works on very smooth concepts. but in some cases we got stuck while using Ajax updatepanel. But you need not to worry. Here i am showing you how to resolve the issues for different cases Lets start with very basic use of A...