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
M

Member 3981366

@Member 3981366
About
Posts
23
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Mulitple rows in header template
    M Member 3981366

    How to have mulitple rows in header template of datagrid, or datalist or repeater.I want header like following..........

                **  | col2col3mixed | 
             col1 |---------------|col4
                  | col2  | col3  |**
    

    How to do this?

    ASP.NET tutorial question

  • [Message Deleted]
    M Member 3981366

    [Message Deleted]

    ASP.NET

  • Time values in arraylist
    M Member 3981366

    Hi i want to have time in arraylist like following 9:45 AM 10:00 AM 10:15 AM 10:30 AM .... so basically 15 mins are added to previous item.. How to do this? Pls reply ASAP.

    C# tutorial question

  • change selected index of System.windows.controls Combobox from javascript code + silverlight
    M Member 3981366

    hello, I have put System.windows.controls Combobox in silverlight usercontrol. which i have hosted in default.aspx. Now i want to call javascript on button click -- to change selected index of combobox ..... I am using .net 3.5 sp1 with vs 2008 so how to change selected index of combobox from javascript code.. Please help asap.

    WPF csharp javascript database visual-studio help

  • Contains not work instead of "where in" of sql
    M Member 3981366

    Hi, I have dynamic string[] i want to have query which can work like "where in" clause of sql i tried with string[].contains(colvalue) but didn't work --------------------------- string[] my = containQuery1.ToArray();//my[0]="january", my[1] = "february" and so on.. DataServiceQuery<Classname> query = (DataServiceQuery<Classname>) (from c in svcContext.Classname where my.Contains(c.MONTH) && c.YEAR == strYear select c); query.BeginExecute(fillData, query);

    LINQ database

  • Export HTML to DOC/PDF with header and footer
    M Member 3981366

    Hi i have an html report in asp.net I want to export html report to word .. I am able to do that by following code ..but i want to have predefined header and footer in exported word document... so how to set header/footer of ms-word document from asp.net code. ------------------------------------------CODE----------- string strHTMLContent = reader.ReadToEnd(); strHTMLContent = strHTMLContent.Replace("#Education#", "BE"); strHTMLContent = strHTMLContent.Replace("#Position#", "Software Engineer"); lblmsg.Text = strHTMLContent; HttpContext.Current.Response.Clear(); HttpContext.Current.Response.Charset = ""; HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8; HttpContext.Current.Response.ContentType = "application/ms-word"; string strFileName = "new1" + ".doc"; HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + strFileName); HttpContext.Current.Response.Write(strHTMLContent); HttpContext.Current.Response.End(); HttpContext.Current.Response.Flush();

    ASP.NET csharp html asp-net tutorial learning

  • deferred loading in LINQ
    M Member 3981366

    hi Lst's we have 2 queries to get data in LInq to sql + asp.net 3.5 //------deferred loading---//

    var result = from user in DBContext.Users
    select user;

             foreach (User u in result)
             {
    
             }
    

    //------immediate loading---//

    List result = (from user in DBContext.Users
    select user).ToList();

    I want to know -- accrding to defereed loading the queries should be executed only when it's requested in for each loop.and in immediate load we get all data at once. but doesn't query executes on var result =..stmnt.?

    LINQ csharp database asp-net linq question

  • LINQ and server side execution
    M Member 3981366

    Hi, With LINQ the queries are executed on server via server side code so doesn't it create extra load on server for query. Is it true that we can run db queries or sp's gives more performance over LINQ queries? Please justify whether it's true or not?

    LINQ database csharp sharepoint linq sysadmin

  • patterns and practices
    M Member 3981366

    Hi, When to use patterns and practices? I think it's used for architecture like 3 tier... How to start using it? I read on Microsoft that it's recommended arch. for .net projects but how to start using it?

    .NET (Core and Framework) csharp architecture tutorial question

  • Extended Methods
    M Member 3981366

    Is extension method = static method returning strongly typed variables or collections? i read one entry about it saying -- "this" keyword as a static method param tells The compiler that this particular Extension Method should be added to objects of type default .net class. SO do we need to add "this" keyword for creating extended method or every static method in static class can be called extension method?

    LINQ csharp question

  • JSON vs. XML and Calling WCF Service using JQuery
    M Member 3981366

    Hi, * What is difference between JSON and XML? Which is better? * How to call WCF Service using JQuery(like we call Web Service from JavaScript)

    ASP.NET javascript question csharp visual-studio wcf

  • JQuery with asp.net
    M Member 3981366

    Can anyone tell me What is alternate for following JavaScript with asp.net functions using JQuery. pls give example.. -> Jquery function with parameters -> window.open -> ScriptManager.StartUpScript -> Make JQuery function and call it from code behind. Also how can i get intellisense support for JQuery in vs 2008 without upgrading to sp1. I donwloaded one hotfix Hotfix for Microsoft Visual Studio 2008 – KB946581 ..but it doesnt help.

    ASP.NET visual-studio csharp javascript question asp-net

  • XML navigation
    M Member 3981366

    which method is more appropriate for use with XML? -> xmlDocument -> xPathDocumrnt -> Datatset

    ASP.NET xml question

  • proxy for WCF service [modified]
    M Member 3981366
    1. why to create proxy for WCF service. what is diffrence between adding by rightclick->Add Service reference & creating proxy. 2) why to create XSD files while making WCF service. And why to generate class frm that.

    modified on Thursday, February 12, 2009 5:53 AM

    ASP.NET csharp wcf question

  • thumbnail image in datalist and display full size image on any of datalist image click
    M Member 3981366

    hi, I am displaying images thumbnail in datalist. Now I want to display clicked image with original size in another image tag contained in another div(which is invisible initially but can be visible on image click in datalist) ----------------------------

    ---------- here in image id "imageOriginalSize" i wanna display original sized image.

    ASP.NET

  • diff. betn selection methods for XML [modified]
    M Member 3981366

    for asp.net 2.0 What is difference between following methods for selecting XML data. which one is better interms of performace. 1) Dataset.select 2) dataview 3) xmlDocument.SelectNodes 4) xmlNavigator.select

    modified on Monday, January 19, 2009 2:41 AM

    ASP.NET csharp asp-net xml question

  • window.parent not working in firefox
    M Member 3981366

    I am using following function to print iframe . but it doent work with Firefox and works in IE..why dont work in mozilla fireox 3.0..pls gv alternate.. function Print() { var iframeE3 =parent.document.frames['pageframe1'].document.frames[2]; var iframeE4 =iframeE3.document.frames.length; if (iframeE4>0) { iframeE3.focus(); iframeE3.print(); } else { alert('no selection'); } }

    ASP.NET

  • SAPI 5.1 for speech recognition_SR engine threashold
    M Member 3981366

    Hi ALL, how to work with confidence level & threshold value while work with Speech API 5.1 in windows xp to increase accuracy of speech recognition.

    C# json tutorial

  • paging control in C# windows application
    M Member 3981366

    how to make "yahoo answers" website like paging list control(horizontal list with page nos in boxes style) in C# windows application.. In this type of control i wanna generate list of page nos dynamically..with proper style like hover. example can also be seen in windows live search results at microsoft website. pl suggest solution for this..

    C# tutorial csharp

  • wma, flac or aac to pcm(wav) conversion
    M Member 3981366

    Thanks for sharing information about audio format..... But my actual interest is to know about implementation point of view of such decoding (flac,wma,aac,m4a to pcm(wav)) conversion in .net mobile application.

    modified on Saturday, October 11, 2008 5:34 AM

    Mobile csharp tutorial 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