Search

You searched for the word(s): userid:700300

Matching Posts

  • Re: Run a stored procedure that takes several minutes from an ASP.NET page

    I think you are upto create a scheduling kinda stuff. You can access a method page periodically from third party appln from sites likes http://www.wsscheduler.com/ For greater control you can proceed towards your homemade soln when you think "Yes I Can !"
    Posted to Getting Started (Forum) by hs_jha on 11/27/2009
  • Re: Run a stored procedure that takes several minutes from an ASP.NET page

    Very much possible but if incorrectly done has the risk of hogging up server resources or crash the system. The logic is to transfer the method to a separate thread that handles sp execution. When we open a webpage from asp.net it is executing in the main thread. The thing that we need to see is that the new thread that we are going to create is properly closed after execution or aborted if an error occurs.
    Posted to Getting Started (Forum) by hs_jha on 11/27/2009
  • Re: Extract information from string through regular expression.

    So you are after ffmpeg !!!! Well ! I do not have mastery over reg ex but rptHarry has..He will be arriving in this thread shortly i bet !!! string s = "-qcomp 0.6 -qmax 15 -qdiff 4 -i_qfactor 0.71428572 -b_qfactor 0.76923078"; int startIndex = s.IndexOf("-qmax") + 6; int endIndex = s.IndexOf("-qdiff") - 1; int length = endIndex - startIndex; Response.Write(s.Substring(startIndex, length)); Try this if you want that through string manipulation....I believe it should
    Posted to Getting Started (Forum) by hs_jha on 11/27/2009
  • Re: Recommend blog engine on .NET

    I am a happy BE user !! It used to execute slow for heavy images page but with this setting that also is no more a prob.. http://www.jcodes.info/post/Optimizing-blog-engine-in-terms-of-page-delivery-on-shared-hosting.aspx
    Posted to Getting Started (Forum) by hs_jha on 11/27/2009
  • Re: problem with image buttons

    A dirtyquick soln is to email yourself what session contains from global.asax Session_OnEnd event.
    Posted to Getting Started (Forum) by hs_jha on 11/27/2009
  • Re: Simple asp.net C sharp Content Management System

    Content Management Systems in its bare essential needs 1. A content listing/display page 2.A content details page that displays details when one clicks on list (not to be confused with data list !) of items for example there is a website that lists Shakespeare books excerpts then -- In home page (1) all books title and few details like RePublish Data etc is put in listings page with paging. And When anyone clicks over title the link sends him/her to details page on 2 that will generate the details
    Posted to Getting Started (Forum) by hs_jha on 11/26/2009
  • Re: File uploading and Downloading

    //sample for the db handling class public class YourDBhandlerClass's { public static bool Insert(string Filename) { using (SqlConnection _con = new SqlConnection(ConfigurationManager.ConnectionStrings["XXX"].ConnectionString)) { int Result; SqlCommand cmd = new SqlCommand("INSERT INTO [XXXX] ([FileName]) VALUES (@FileName)", _con); cmd.Parameters.Add("FileName", SqlDbType.Text).Value = FileName; _con.Open(); Result = cmd.ExecuteNonQuery(); return Result; if(Result
    Posted to Getting Started (Forum) by hs_jha on 11/25/2009
  • Re: File uploading and Downloading

    When you say that you need to put those file for download dat mean those links are exposed that carry direct link to file location. So In your datasource control (GridView/Details View) the download link will resemble like below <%#String.Format("stuffsfolder/{0}",Eval("file name")) %> YourDB-handler-Class's Insert method will accept the file name and do the db record insert.
    Posted to Getting Started (Forum) by hs_jha on 11/25/2009
  • Re: How to build a huge site with lot of visitors

    Keep Money in your pocket for promotion , patience in your heart for result and planning in your head for creating something New & Diffrent . I have seen some slow and ugly websites making big moolah's even.. so no theory works sometimes....
    Posted to Getting Started (Forum) by hs_jha on 11/25/2009
  • Download an image from url link ?

    Hi friends and geeks , How to download an image (which is a binary data i think..) using http web request/response classes. For example given a link http://farm1.static.flickr.com/28/51736959_d493e5b7c1_m.jpg how to download an image like this on your local disk ? Thanks HSJ
    Posted to Getting Started (Forum) by hs_jha on 11/25/2009
Page 1 of 46 (456 items) 1 2 3 4 5 Next > ... Last »