Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
Y

yesu prakash

@yesu prakash
About
Posts
225
Topics
145
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Return multiple result set to Generic List
    Y yesu prakash

    Hi, My procedure return multiple result set. I need to assign it to generic list. How can i work a generic list like dataset do? I am using it in web service, so i avoid using dataset. I want the result in List<> Thankyou YPKI

    ASP.NET question

  • Default font name of Silverlight XAML Pages
    Y yesu prakash

    Hi, What is the default font used in silverlight XAML page. How can i use xaml default font in aspx pages? Thankyou, YPKI

    WPF question wpf

  • File Encryption and Decryption
    Y yesu prakash

    Hi, How to encrypt a uploaded file and save it in the server and how to download it as actual file. eg: Upload a .docx file to server and save it as an encrypted file. When download it, it shall be download as .docx file. Thankyou

    ASP.NET sysadmin security tutorial

  • Silverlight project publish
    Y yesu prakash

    Hi, In VS 2010, when i try to publish i am getting all the files including .cs pages, which contain c# codes, project file etc. I need only the required files for publish. When i build using Release mode, it does not create all files. How can i publish as like done in VS2009. Thankyou, YP

    WPF csharp visual-studio question announcement

  • IIS Web sharing is blocked in the network
    Y yesu prakash

    Hi, I published asp.net files in a windows xp which is in a network. Its working fine in the local system, but it is not accessible in other systems in the network. The message shows page not found. Where is the problem? Need to give any web sharing privileges? Thankyou, YPKI

    Hosting and Servers csharp asp-net sysadmin windows-admin help

  • Find X,Y position of a element
    Y yesu prakash

    Hi, How to find the Find X,Y position of a element, which is working both in IE and Firefox. Codes from net not working in mozilla. Thankyou

    JavaScript tutorial

  • Using where condition in Linked server with ms access in sql server.
    Y yesu prakash

    Hi How to write a where condition in the OPENQUERY to get data from ms access using linked server. select * from openquery(AccessDB,'select * from TblEmp where EmpPK=1'). This query show the following error message " OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "AccessDB" returned message "No value given for one or more required parameters.". Msg 7320, Level 16, State 2, Line 1 Cannot execute the query "select * from TblEmp where EmpPK=1" against OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "AccessDB". " With out where condition its working fine Thankyou YPKI

    Database database sql-server com sysadmin help

  • Connection between MS Access and SQL Server
    Y yesu prakash

    There is no IMPORT DATA in TASK. I am Using 2005 SQL Server. Also i want to connect with ms access to retrive the employees details from a stored procedure when requried.

    Database database sql-server sysadmin tutorial question

  • Connection between MS Access and SQL Server
    Y yesu prakash

    Hi, How to access database of MS Access from SQL Server? eg: I have a MS Access database with empoloyees details. From SQL Server database i need to get the employees details from MS Access. Thankyou, YPKI

    Database database sql-server sysadmin tutorial question

  • Bulk Insert into database from datatable or dataset or datagrid
    Y yesu prakash

    Hi, How to insert a bulk data from a datatable or dataset or datagrid into database in a single click. Thankyou YPKI

    ASP.NET database tutorial

  • Bulk Insert into database
    Y yesu prakash

    Hi, How to insert a bulk data from a datatable or dataset or datagrid into database in a single click. Thankyou YPKI

    ASP.NET database tutorial

  • Data display with dynamic coloum
    Y yesu prakash

    Hi, I need to display data with dynamic generation of template column. The heading of the column is taken from database and its number will be dynamic. All the items of the columns will be template column to add a checkbox. For this which control will be suitable? DataList or ListView or Detailsview or any other controls? eg: I want to display the group and group member name like below with a check box in each item for edit ......Group1..........|.........Group1........|........Group1.........|........Group1........| Name1 Checkbox | Name1 Checkbox | NameA Checkbox | Name7 Checkbox Name9 Checkbox | Name4 Checkbox | NameS Checkbox | NameO Checkbox Name7 Checkbox | Name6 Checkbox | NameC Checkbox | NameP Checkbox Name6 Checkbox | Name7 Checkbox | NameR Checkbox | NameK Checkbox Name4 Checkbox | Name8 Checkbox | NameI Checkbox | NameL Checkbox Thankyou YPKI

    ASP.NET database question

  • Bulk file uplaod from a folder
    Y yesu prakash

    Hi, How to upload all the files from a folder in a button click. eg: there is a folder in the client system with some files, from a button click i need to upload all the files from that folder. is it possible in asp.net or javascript. or will it possible if the folder is in the server where the files are published. Thankyou, YPKI

    ASP.NET csharp javascript asp-net sysadmin tutorial

  • Block Concurrent user
    Y yesu prakash

    Hi, How to block the login of same user at different location in asp.net. Thankyou, ypki

    ASP.NET csharp asp-net tutorial

  • isnull in linq where condition
    Y yesu prakash

    Hi, How to write isnull(exp1,exp2) in the where condition of linq. eg; SQL: ... where userpk = isnull(@userpk,userpk) i need to convert the above query to linq Thankyou, Yesuprakash

    Database database csharp linq tutorial

  • SQL Automatic backup
    Y yesu prakash

    Hi, How to take SQL Server backup automatically at a given schedule. Thankyou, YPKI

    Database database sql-server sysadmin tutorial

  • Navigate between xaml page from aspx page
    Y yesu prakash

    Hi, How to navigate between xaml page from aspx page. eg: I have two XAML page A.XAML and B.XAML. In the .web project, i have an ASPX page with two linkbutton, when i click the first linkbutton i need to open A.XAML, when click on second linkbutton i need to open B.XAML Thankyou YPKI

    WPF wpf tutorial

  • Open a XAML page from aspx page
    Y yesu prakash

    Hi, How to open or navigate to a XAML page from a button click in the .aspx page in the .web project. Thankyou YPKI

    WPF wpf tutorial

  • Navigate in Frame from code
    Y yesu prakash

    Hi, How can i navigate to another page in a frame from code behind. ex: I have a navigate frame, when i click on a link button from outside navigate frame i need to navigate it to another page by writing code behind. i try .. ContentFrame.UriMapper.MapUri(new Uri(@"/EmployeeList.xaml")); ContentFrame.Source = new Uri("/EmployeeList.xaml"); in the click event. error i get is Microsoft JScript runtime error: Unhandled Error in Silverlight Application Invalid URI: The format of the URI could not be determined. at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind) at System.Uri..ctor(String uriString) at HRMS.MainPage.Menu_MenuItemClicked(Object sender, EventArgs e) at SilverlightMenu.Library.Menu.gridLevel2_MouseLeftButtonUp(Object sender, MouseButtonEventArgs e) at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args) at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName) Thankyou, YPKI

    WPF wpf help question

  • Client side validation
    Y yesu prakash

    Hi, I want to validate the controls in asp.net silverlight when click a button before save. We need any validation controls or javascript? i need to work same as asp.net validation control or javascript validation. Regards, YPKI

    WPF csharp javascript asp-net question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups