Archive for the ‘ASP .NET’ Category
Table Variables ms sql
Issue Detail: When I drag and drop store procedure into DBML file (Linq to Sql dbml file) it throws below error:- “Unknown Return Type – The return types for the following stored procedures could not be detected” or “No return type for Store Procedure” This happens due to various syntax issues which DBML does not […]
September 2, 2012
·
Infoyen ·
2 Comments
Tags: asp, MOSS, SharePoint, SharePoint 2010 · Posted in: ASP .NET, SharePoint, SharePoint 2010
iframe onload event
Introduction:- This article describe; How to add onload event on iframe? This help to perform some action once iframe get load. For example; on button click i display loading image and as soon as iframe content loads ; i hide loading image.
July 21, 2012
·
Infoyen ·
2 Comments
Tags: asp, javascript · Posted in: ASP .NET, JavaScript
Change RadioButtonList selected index using Javascript
Requirement: Change RadioButtonList selected index on Reset button to default option. This will cover below topicalso:- – JavaScript Get RadioButtonList Selected Value – Javascript Change RadioButtonList selected index – respond to asp:RadioButtonList changes
May 17, 2012
·
Infoyen ·
2 Comments
Tags: asp, dotnet, javascript · Posted in: ASP .NET, JavaScript
Pass page values from one to another page in ASP .NET
Hi, To Pass Values Between ASP.NET Web Pages or To Transfer page values to another page we can use following:- 1. Response.Redirect (Use a query string.) 2. Cookies 3. Session Variables 4. Application Variables 5. HttpContext by using Server.Transfer details:- Introduction We always come into situations in which we need to transfer values from one […]
March 13, 2012
·
Infoyen ·
No Comments
Tags: how to transfer data one page to another page, How to: Pass Values Between ASP.NET Web Pages, Send Data from one page to another page in ASP.NET, Transferring page values to another page · Posted in: ASP .NET
Downloading File using stream on sharepoint page
Description This article will show you how to buffer data into a MemoryStream from a query and output the buffered data back to the browser as a dialog (with save open cancel). The Code: – The first step is to get object of SPSite and SPWeb. – Second steps is to get SPListItem object using […]
February 24, 2012
·
Infoyen ·
No Comments
Tags: download a document in SharePoint using stream, Download document using file bytes, Download sharepoint file into memorystream object, Downloading File using stream, Moss 2007 Tips & Tricks, SharePoint stream file for preview · Posted in: ASP .NET, MOSS, SharePoint, SharePoint 2010
custom pagination for gridview in sharepoint
If you want to implement custom pagination having “Next” and “Prev” button in gridview then you have following options:- http://www.codeproject.com/KB/aspnet/CustomPagingForGridview.aspx http://msdn.microsoft.com/en-us/library/aa479347.aspx http://dotnetslackers.com/articles/ajax/ASPNETAjaxGridAndPager.aspx But i have got one more good solution which works well for me. See below:- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 […]
February 21, 2012
·
Infoyen ·
No Comments
Tags: custom pagination for gridview in sharepoint, custom pagination in gridview, GridView .PagerSettings.FirstPageText · Posted in: ASP .NET, MOSS, SharePoint