Bhaskar_Reddy Profile

Join Date:
2011-12-25
Blogs Owned
1. Asp.net,Csharp,Ektron CMS,Sql,Jquery Solutions
give helpful technical solutions in application development using Microsoft technologies

Latest Blog Posts
- datalist control in asp.netHere i will show how to display the images with zooming option in Data list.Data list doesn't provide built in structure for presenting data.So we(developers) provide required custom structure.The Grid view is not applicable for this above requiremen...
- how to send a mail with attachment in asp.netSending mail with attachemt,sending mail with multiple attachments and sending a mail with file,which in application folder are the main things are occurs when working with mail concepts.Here i will describe how to send the mail with attachment path...
- How to get the cookie value in asp.netHere i will show how to set and get the cookie value.Cookies are used to store the small size of data in browser.The below example gives , how perform manipulate functions on cookies .In my application i have three page and each page having two image...
- IIS webserver in asp.neton Mar 6, 2012 in asp.netThe asp.net is server side web specification ,in the asp.net we can work with IIS web server.The web server maintains collection of proxy machines ,very flexibly depending on the request ,the we service gives the response,The total application contro...
- How to create a Infopath form in sharepoint 2010on Mar 5, 2012 in SharePoint 2010Here i will describe how to create an InfoPath form in share point 2010.Go to InfoPath 2010 Designer and click on the file-->New-->select blank form . Whenever we click on the blank form we will get an option to design the Form Then i have in...
- how to upload multiple files in asp.neton Mar 5, 2012 in asp.netHere i will show how to upload multiple file using File upload control in asp.net.For this i have taken one HttpFileCollection to upload the multiple files. CodeBehind: protected void btnUpload_Click(object sender, EventArgs e) { if (FileUpload.Ha...
- how to upload a file in wcfon Mar 3, 2012 in WCFHere i will show how to upload a file in WCF serve rice.The streaming concept is used to implement a wcf service to upload a file.I have created a wcf project i:e UploadFile.svc then Open the IUploadFile.cs and add following code using System; using...
- How to Get the MetaData of ContentBlock in Ektro CMSon Mar 2, 2012 in Ektron CMSHere i will show how to get the meta data of content in ektron CMS.We have some API features to get the meta data of content block.In this One is Content API and other one is meta data API.The another way i:e Taxonomy is used to get the content block...
- How to processing the HttpRequest in ASP.NET MVCon Mar 1, 2012 in MVCHere i wil show how to processing the HTTPRequest in ASP.NetMVC.The MvcRouteHandler class is used to process the HttpRequest.Below is the simple exaple for this.In this you can customise the HttpRequest MvcRouteHandler public class MvcRouteHandler:IR...
- Visual Web Part and SharePoint list in SharePoint 2010on Feb 29, 2012 in SharePoint 2010Here i will show how to access the the share point list data to Visual Web part in share point 2010 and the linq query is used to get the data from share point list.For this,Go to Solution Explorer, expand VisualWebPart1 and double-click on VisualWeb...
- How to access and render SharePoint List Data in SharePoint 2010on Feb 28, 2012 in SharePoint 2010Drag a Silverlight DataGrid control onto the existing Grid in the Page.xaml Silverlight Designer.Expand the DataGrid to take up the entire page by going to the properties grid and setting its Width and Height property to Auto, its HoriztonalAlignment...
- New Features in ASP.NET MVC 4 Betaon Feb 27, 2012 in MVCHere i will given what are the new featured are introduces in ASP.NET MVC 4 beta version. It includes ASP.NET web API,A new framework to creating HTTP services.By using this framework we can reach clients including browsers and mobile devices. ASP.NE...
- page controller and front controller in asp.net MVCPage Controller: In the page control pattern ,There is a different handler for each request,th specific handler for which is determined on a URL by URL basis.It suggets you build a hierarchy of pages to reuse some code across pages. Front Controller:...
- wcsf in visual studioWCSF is a collection of reusable components and libraries to apply practices and patterens in asp.net development.It comes with a number of visual studio templates and wizards with clear purpose of speeding up development.It basically built on top of...
- Microsoft JScript runtime error: 'jQuery' is undefinedon Feb 24, 2012 in JqueryWhen i am working with jquery in application ,Suddenly i stuck with the fallowing error.i:e "Microsoft JScript run time error: 'jQuery' is undefined".This is the common error will arise when working with Jquery. The main reason for this is the...
- Granting Privileges to a role in sql serveron Feb 23, 2012 in sqlTo grant priviliges to a role use the same syntax as granting priviliges to a user except that in the place of username specify the role name.Here i will shown a example to grant variu=ous permissions on the tables orders,sales and customers to the r...
- How to create smart form in ektron CMSon Feb 23, 2012 in Ektron CMS asp.netMight be think all why we using smart form? The same thought i had when working with smart form in ektron cms.In Ektron the Smart Forms used to separating Web content from presentation and avoid the duplicate content from users.The smart form can del...
- Features of Dotnet Nuke 6.0DotNetNuke is an open source Web Content Management System (CMS) for Microsoft .NET. DotNetNuke (DNN) Enterprise Edition 6.0 has endless possibilities for developing an resourceful website and business applications . Features of DotNetNuke Enterpris...
- Http Handler in Asp.netBasically all of you know what does the http handler in asp.net .We can simply say about http handler is get the input from the the HTTP packet,do some tasks and prepares a return HTTP packet.Here i will explain the brief exaplantion about handler wo...
- Basics of wcfWCF stands for Windows communication foundation.SOAP is an attribute it is used on webmethod.It is recomended to work with WCF 3.0,3.5,3.5sp1,and 4.0 .Data with WCF is also recommended using LINQ to SQL and ADO.net entity framework.WCF is completly c...