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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

ankushmn

@ankushmn
About
Posts
17
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • YAHOO.widget.AutoComplete
    A ankushmn

    We r using YAHOO.widget.AutoComplete to show information in div or container... this all happens on keypress event of textbox. this is fine .. working ok.. Now i want to show some default list or info. in container or div on onclick event of textbox when textbox is empty. now here i am stuck ... :( please help me in this ... Thanks in adv

    Web Development help docker

  • Showing 500 to 700 images in grid without paging .... using Response.BinaryWrite(byte []) to show images
    A ankushmn

    Hi, We are facing one issue in our web application. Architecture is we have one end user site which fetches data from database and fetches images from share point site. In end user site in one of our page we show grid which contain information along with the images related to that row. To show images we use one function which request to share point site for images with Id/pwd for authentication. This function is working properly. In grid we are able to show all images properly. Currently we are showing 10 records per page means grid page size is 10. Now the issue is : On the same page there is a link which opens a popup, this popup shows all records in one grid without paging means all records on one page. In this case we use same function to fetch images from share point and but this we are not able show all images properly some of the image are Red Cross so we confirmed that whether images are present in share point site but the images are there in share point site. above case we tested for 350 records also ... still only 190 to 180 images get download while download images it shows status on status bar at bottom for e.g. (500 items remaining) but in between suddenly it this status disappears from status bar and status also shows page complete download I am not able to understand why images are not appearing and why they are appearing after right click and show image option. Is there any issue related to memory ?? Is there any limit to show no. of images on one aspx page ?? Can any one help me in this issue … Thanks in advance

    ASP.NET help css database security architecture

  • problem in fetching and showing images from Share point site to end user site grid
    A ankushmn

    Hi, We are facing one issue in our web application. Architecture is we have one end user site which fetches data from database and fetches images from share point site. In end user site in one of our page we show grid which contain information along with the images related to that row. To show images we use one function which request to share point site for images with Id/pwd for authentication. This function is working properly. There are at least 50,000 rows in database and which we are showing in grid. But not all them having images. In grid we are able to show all images properly. Currently we are showing 10 records per page means grid page size is 10. Now the issue is : On the same page there is a link which opens a popup, this popup shows all records in one grid without paging means all records on one page. In this case we use same function to fetch images from share point and but this we are not able show all images properly some of the image are Red Cross so we confirmed that whether images are present in share point site but the images are there in share point site. above case we tested for 350 records also ... still only 190 to 180 images get download and rest of the images are red cross but when we right click on them and select Show Image option then they get appear. Explanation about function which fetches images from share point site is as follows Request to share point site will returns byte array in response for one image at a time means if there are 300 images will call this function 300 times. When we get this byte array will use Response.WriteBinary to show this image. I am not able to understand why images are not appearing and why they are appearing after right click and show image option. Is there any issue related to memory ?? Is there any limit to show no. of images on one aspx page ?? Can any one help me in this issue … Thanks in advance

    ASP.NET help css database data-structures security

  • Facing problwm while try to manage Session in Sql Server 2005 Outproc Session Mgt. in ASP.Net 2.0
    A ankushmn

    Hello Satips, Can u pls explain me that in details ... that will really helpful Thanks Ankush

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

  • Facing problwm while try to manage Session in Sql Server 2005 Outproc Session Mgt. in ASP.Net 2.0
    A ankushmn

    Following Error came while try to Configure SQL Server 2005 to Store ASP.NET 2.0 Session State Unable to use SQL Server because ASP.NET version 2.0 Session State is not installed on the SQL server. Please install ASP.NET Session State SQL Server version 2.0 or above. If someone have a solution pls post it ASAS .... :) Thanks in Adv.

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

  • JavaScript: How to convert string to date and Compare two dates.
    A ankushmn

    Check this out ... this will solve ur problem :) function CheckDate(oSrc,args) { args.IsValid=true; date1 = new Date(); date2 = new Date(); diff = new Date(); var objDOB = document.getElementById("txtHidDOB"); var AppDate = objDOB.value; if(AppDate != "") { var now = new Date(); var SysDate = parseInt(now.getMonth()+1)+"/"+now.getDate()+"/"+now.getFullYear() FromDateObj = new Date(AppDate + " " + "00:00:00"); date1.setTime(FromDateObj.getTime()); //alert(date1.getTime()) currDateObj = new Date(SysDate + " " + "00:00:00"); date2.setTime(currDateObj.getTime()); //alert(date2.getTime()) var DateDiff = date1.getTime() - date2.getTime(); //alert(DateDiff); if(DateDiff >= 0) { args.IsValid=false; } } }

    ASP.NET javascript tutorial

  • Session Management
    A ankushmn

    I am using StateServer Session but I want to write a code on Session_End and as Session_End event is not fired for StateServer I am stuck with some problem. My problem is if user close the browser without logout then I want to make some operations and Session_End was one option but as I am using StateServer that option is of no use. Is there any other option ? Please help me out. Waiting for reply. :-( Ankush... :-)

    ASP.NET help question

  • Outproc session mgt in ASP . Net
    A ankushmn

    Thanx for Reply i am not able to understand ... what u want to say ??? Pls explain me ... If you have any urls regarding this issue pls send me. It will be helpful ... :laugh:

    ASP.NET database sql-server sysadmin

  • Outproc session mgt in ASP . Net
    A ankushmn

    i am working on web application in which we are using Outproc session mgt. As we manage session using Outproc there are two ways 1) Sql Server 2) State Server in above we are using State session mgt. In this case i want to know if we use Application variable then where actually this variable store on Web Server OR State Server. Please tell me ... our further development depend on this .... Thanx in Advance

    ASP.NET database sql-server sysadmin

  • Selecting leaf node directly !!!
    A ankushmn

    Hello, i have a problem while working with tree view control in window application. Consider below tree Window Application |___ Language |____ C++ |____ VB |____ VC++ |____ . Net |___ C# |___ VB.Net I am filling tree on form load and if i want to directly focus to node C# (it gets selected) and i want that tree to be expand up to that level. and i have the imageindex of C#. How to do it ??? Its urg :-(((( Thanx in Advance :-)))

    C# csharp c++ data-structures help

  • Can i disabled the entries in ComboBox in window application
    A ankushmn

    Hello, Can i disabled the entries in ComboBox in window application ?? What i want is as follows I have two ComboBox on my page having same entries in it. If i Select one of the value from first ComboBox then that value or entry get automatically diable in second ComboBox and vice versa. Thanx in Adv.

    C# question

  • TreeView Control - selecting and deselectig node
    A ankushmn

    I tried and i got it. Thanx :laugh:

    C#

  • TreeView Control - selecting and deselectig node
    A ankushmn

    In TreeView control, If i select parent node which gets bold then i select another parent node which also gets bold. In this case i am able to see which node is selected and which is deselected. I need code for if i selected another parent node then previously selected node gets deselected and gets normal style means not bold. - Parent 1 --- Child Node 1 --- Child Node 2 - Parent 2 --- Child Node 3 --- Child Node 4 e.g. If Parent 1 is selected(bold) by default when form loads and then if i select Parent 2 then Parent 1 gets normal font and Parent 2 gets bold bcoz it is currently selected.

    C#

  • TreeView Control problem
    A ankushmn

    Thanx Robert Rohde ...:-D

    C# wpf help

  • TreeView Control problem
    A ankushmn

    If I have a TreeView and fill it with nodes and then decide to change one of the node's font styles to bold, the end of the text in that node gets chopped off. It seems like the TreeView isn't taking the NodeFont's style into account when calculating the width of the text. Here's the code to make it happen on a node named treeNode in a TreeView named treeView: treeNode.NodeFont = new Font(treeView.Font, FontStyle.Bold);

    C# wpf help

  • Sending email using Sql Server 2000 CDOSYS
    A ankushmn

    i tried code from http://support.microsoft.com/default.aspx?scid=kb;en-us;312839#XSLTH4156121122120121120120 As we are using window2003 we need to use CDOSYS code from given URL. Its working on our side. But giving problem on client side. Can any one help me this????? http://support.microsoft.com/default.aspx?scid=kb;en-us;312839#XSLTH4156121122120121120120

    Database help database sql-server com sysadmin

  • Sending email using Sql Server 2000 CDOSYS
    A ankushmn

    I tried code from http://support.microsoft.com/default.aspx?scid=kb;en-us;312839#XSLTH4156121122120121120120 As we are using window2003 we need to use CDOSYS code from given URL. Its working on our side. But giving problem on client side. Can any one help me this????? http://support.microsoft.com/default.aspx?scid=kb;en-us;312839#XSLTH4156121122120121120120

    Visual Basic help database sql-server com sysadmin
  • Login

  • Don't have an account? Register

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