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
P

Prateek G

@Prateek G
About
Posts
94
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Script on the page causing Internet Explorer to run slowly -- Resolution
    P Prateek G

    Searching results is not taking much time but I have Entities kind of thing (collection of properties) binding data to that entity is taking much time. But sometime when I am not searchin any results then also this pop up is coming. Any way where I can check which one is the script which taking the time. I think problem is something related to number of scripts running on the IE, coz IE has a limitation about that.

    ASP.NET question database tools help

  • Script on the page causing Internet Explorer to run slowly -- Resolution
    P Prateek G

    Hi All, I am developing a solution where on a page m using some ajax control (hover menu, updatepanel, extender menu). I am getting about 1400 search results from database and I am puttin it in repeater control (No paging). All these things causing this warning message. Is there any resolution. Will paging help ??? If yes what is the maximum number of results which I can put on my page. Thanks in advance..

    ASP.NET question database tools help

  • How to avoid page refresh on click of F5
    P Prateek G

    I want to avoid to page to get refreshed on click of F5,Is it possible and how? Thanks..

    ASP.NET tutorial question

  • ASP.NET1.1: How to import data from xsl to sql server through c#. Its Urgent.
    P Prateek G

    Are you sure you want the data from .xls, Basically .xls files define just rendering of xml. Be more precize paste a sample source file and specify requirement.

    ASP.NET csharp asp-net database sql-server sysadmin

  • Generic XSLT
    P Prateek G

    <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"/> <xsl:template match="/"> <html> <body> <!-- The heading --> <div> Results </div> <br/> <!-- Define the table itself --> <table width="100%" border="1"> <tr> <xsl:for-each select="/*/* [position()=1] /*"> <th> <xsl:value-of select="name()"/> </th> </xsl:for-each> </tr> xsl:apply-templates/ </table> </body> </html> </xsl:template> <xsl:template match="/*/*"> <tr> <xsl:for-each select="*"> <td> <xsl:value-of select="."/> </td> </xsl:for-each> </tr> </xsl:template> </xsl:stylesheet>

    XML / XSL xml html wpf regex question

  • Passing parameters to XSLT
    P Prateek G

    Then u can incorporate the same in ur xslt itself, u just need to use xpath,select desired node and directly put the value. If u can give me same xml and xsl may be i can give u an example of the same.

    XML / XSL xml javascript html sales regex

  • excel
    P Prateek G

    I can think of two ways to put your data into excel file... 1.) Use com object.Add reference to microsoft office and use namespace microsoft.office.interop.excel; then create ur workbook, worksheet and put all the data one by one in a forloop. Export To Excel[^] Export to excel.[^] 2.) Another and very interesting way of doing it use xsl transformation.wot u need to do is just get xml from dataset and then apply xsl on the same and create ur excel sheet.Lemme knw if u r interested...

    modified on Monday, December 10, 2007 5:24:30 AM

    ASP.NET help

  • Serializing object using Generic.list
    P Prateek G

    Without reading ur xml and .cs file Its not possible to answer your query...

    XML / XSL question

  • Passing parameters to XSLT
    P Prateek G

    var xslt = new ActiveXObject("Msxml2.XSLTemplate"); var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument"); var xslProc; xslDoc.async = false; xslDoc.resolveExternals = false; xslDoc.load("YourXsl.xsl"); xslt.stylesheet = xslDoc; var xmlDoc = new ActiveXObject("Msxml2.DOMDocument"); xmlDoc.async = false; xmlDoc.resolveExternals = false; xmlDoc.load(YourXmlString); xslProc = xslt.createProcessor(); xslProc.input = xmlDoc; xslProc.addParameter("surname",valueofSurname) xslProc.output will give u desired table.. u just need to put it as innerHTML for ur page/form...

    XML / XSL xml javascript html sales regex

  • Exporting data to XLS
    P Prateek G

    Response.ContentType = "application/ms-excel"; Response.AppendHeader("Content-Disposition", "attachment; filename="+fileName+".xls"); Response.End();

    ASP.NET question

  • Pushing Multiple Files In One Response
    P Prateek G

    u will have to zip the files and then display..

    ASP.NET algorithms help question

  • view in Excel
    P Prateek G

    check out this one also easiest way-- Export data to excel[^]

    ASP.NET tutorial

  • view in Excel
    P Prateek G

    u can use com object and prepare excel directly from database. Get data from database in a dataset, create and excelapp, workbook,worksheet etc and then just loop through the dataset assign the values to each cell.

    ASP.NET tutorial

  • Monthname() function
    P Prateek G

    Thats wot I want to know wot value u r assigning to Months column.

    ASP.NET csharp asp-net database mysql sales

  • Monthname() function
    P Prateek G

    where are u storing result of the query.... and In which line u r gettin error..

    ASP.NET csharp asp-net database mysql sales

  • Monthname() function
    P Prateek G

    which method u r using to retrieve value from database. like executenonquery etc.. Better if u can paste the code here.

    ASP.NET csharp asp-net database mysql sales

  • Stock report
    P Prateek G

    u can create a proc with following steps which will return a table.. 1) Get no. of days in month. say @no and @p = 1 2) while (@p < @no) 3) Get date and write query GetDate[^] 4> create table with date and count and return it. Lemme know if it is useful...

    Database question help tutorial

  • Stock report
    P Prateek G

    you can loop through all the days of months and store count of moves in another table.

    Database question help tutorial

  • Media RSS2.0 Parser
    P Prateek G

    RSS

    C# xml question

  • how can i create xml data abd how can i update delete and insert..
    P Prateek G

    Insert and delete are pretty simple methods. U just need to access proper node with the help of Xpath query. Post ur specific question if u have any...

    XML / XSL question csharp database xml announcement
  • Login

  • Don't have an account? Register

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