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
V

Venkat Eswaran

@Venkat Eswaran
About
Posts
24
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • XLS to XSL:FO
    V Venkat Eswaran

    Hi everyone, How can i convert excel spreadsheet (xls file) to XSL:FO, in asp.net Thanks, Venkat

    Venky

    ASP.NET csharp asp-net xml question

  • ASP.NET validation
    V Venkat Eswaran

    Hi All, I have a scenario to validate a set of controls in a search page. (user must enter value atleast in one of the text box out of 10 text boxes). How can i use .net validators Thanks, Venkat

    Venky

    ASP.NET csharp asp-net question

  • Help needed for bluetooth application...
    V Venkat Eswaran

    Try this.. http://sourceforge.net/projects/btlib/[^] It is better to use windows applictaion than web applictaion. if you an web applictaion then you will be able to send files to phones present in near the server and NOT near you..

    Venky

    ASP.NET csharp asp-net help

  • Image update cache
    V Venkat Eswaran

    Does your image control getting reloaded after the update. for instance try updating the user image as _.jpg etc. so when you try change the image. Check weather the image control loads the next version (_<version_number+1>)

    Venky

    ASP.NET help announcement

  • populating a gridview in a Page_Load method
    V Venkat Eswaran

    here you go http://msdn.microsoft.com/en-us/library/aa479339.aspx[^]

    Venky

    ASP.NET help database question

  • how to capture screen shot??
    V Venkat Eswaran

    Would you like to get screen shot of that active aspx screen / page or other applictaions running in client PC. Say Notepad, Calulator etc.. If it same screen just capure the HTML source then convert into to JPEG. else you need to write a activeX control to take screen shots of other applications

    Venky

    ASP.NET question tutorial

  • How can i Run my application form the WIndows service?
    V Venkat Eswaran

    Are you sure OnStart event fired sucessfully in your windows service..

    Venky

    C# question help tutorial

  • keyboard disable.....
    V Venkat Eswaran

    Disable all controls on that page. simple solution

    Venky

    ASP.NET help

  • How to disable a KeyBoard???????????
    V Venkat Eswaran

    Disable all controls on that page. simple solution

    Venky

    ASP.NET tutorial question

  • prevent post back when menu item header is clicked
    V Venkat Eswaran

    use

    JavaScript:void(0);

    as terget url. This should solve ur problem

    Venky

    ASP.NET csharp asp-net

  • SQL Server does not exist or access denied. +ConnectionOpen (Connect()).
    V Venkat Eswaran

    Are you trying to open new connection every time you read a row in excel. if yes try opening single connection at first and use the connection everywhere.

    Venky

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

  • Hi..
    V Venkat Eswaran

    http://javascript.about.com/library/blmodal.htm[^]

    function modalWin() {
    if (window.showModalDialog) {
    window.showModalDialog("xpopupex.htm","name",
    "dialogWidth:255px;dialogHeight:250px");
    } else {
    window.open('xpopupex.htm','name',
    'height=255,width=250,toolbar=no,directories=no,status=no,
    menubar=no,scrollbars=no,resizable=no ,modal=yes');
    }
    }

    Venky

    ASP.NET help question

  • asp.net
    V Venkat Eswaran

    Did you mean "IE History". If yes, you cannot access clients IE history from server, you need to develop activeX to enumerate the history folder http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx[^]

    Venky

    ASP.NET csharp asp-net com tutorial

  • installed sql server 2005 error
    V Venkat Eswaran

    To get back your sql 2005 help / documentation, you need to re-install the sql server client tools

    Venky

    Database database sql-server sysadmin help tutorial

  • sql problrm
    V Venkat Eswaran

    SELECT b.n, a.c, b.c AS c1 FROM a RIGHT OUTER JOIN b ON a.n = b.n UNION ALL SELECT a.n, a.c, b.c AS Expr1 FROM a LEFT OUTER JOIN b ON a.n = b.n

    Venky

    Database csharp database c++ java

  • i need help , abt text box [modified]
    V Venkat Eswaran

    http://www.codeproject.com/KB/aspnet/Xtended_TextBox.aspx[^]

    Venky

    ASP.NET help tutorial

  • connection string prob, works in VS but not IIS
    V Venkat Eswaran

    Can you try re-registering .net with IIS using aspnet_regiis.exe

    Venky

    ASP.NET help visual-studio sysadmin windows-admin

  • Need to open .pdf file while click on Hyperlink
    V Venkat Eswaran

    string filename = System.IO.Path.GetFileName(filepath); Response.Clear(); Response.ContentType = "application/pdf"; Response.AddHeader("Content-Disposition", "attachment; filename=" + filename); Response.Flush(); Response.WriteFile(filepath);

    Venky

    ASP.NET

  • Nested Stored Procedure
    V Venkat Eswaran

    Why do you use Count(*), it is better to use Count(ID) ID infers a unique identifier in that table CREATE PROCEDURE titles_count @@TITLE varchar(40) = '%', @@count int OUTPUT AS SELECT @@count = count(title_id) FROM titles WHERE title LIKE @@TITLE GO

    Venky

    Database database question

  • Threading in .Net (C#)
    V Venkat Eswaran

    Hi, I have a page that calls a sql procedure and it runs for 20 - 40 min. I use usual threading for this page. Thread objthread = new Thread(new ThreadStart(ticketingThread)); objthread.Start(); As i dont know when it will end. i never abort the thread. what happens is when user uses the page for 1 weeek, the page starts hanging. I dont know what happens. When i tried debugging it works fine. I also saw creating thread in threadpools ThreadPool.QueueUserWorkItem(new WaitCallback(ticketingThread)); Please advise which one i have to follow and what is the difference between the two. Thanks Venky

    ASP.NET csharp database 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