User Profile

Collapse

Profile Sidebar

Collapse
sanjib65
sanjib65
Last Activity: Jan 31 '10, 11:50 AM
Joined: Nov 27 '09
Location: Kolkata, India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • sanjib65
    replied to Threads v Timers
    You did not answer my main question:

    Recently someone asked to know about making connections with MS Access Database. In response I posted this following link:

    http://www.homeandlearn.co.uk/csharp/csharp_s12p4.html

    You deleted the whole thread and instead posted two links of Bytes Tutorials on Database. Bytes tutorials are very good. I have gone through them, but is it mandatory here to read only these...
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Threads v Timers
    tlhintoc, as a moderator you can always overpower me and delete my thread and even you can write this kind of line:

    But I have a question, is your forum not open for other good free tutorials or links? If someone like me wants to share his nice experience of learning elesewhere and give a reference to that link, it will be deleted immidiately?
    Then what is basic of sharing knowledge in a FORUM?
    If my tone seems to be...
    See more | Go to post

    Leave a comment:


  • sanjib65
    started a topic About Authentication Mode

    About Authentication Mode

    I want to understand about this part of web.config file:

    Code:
    <!--
                The <authentication> section enables configuration 
                of the security authentication mode used by 
                ASP.NET to identify an incoming user. 
            -->
    		<authentication mode="Windows"/>
    If someone explains....

    Best of Luck
    See more | Go to post

  • sanjib65
    replied to Edit image dimensions
    in XML
    So far I think the Flash photo gallery won't let you edit their XML files so that you can manipulate the dimensions or sizes of photos.
    Another thing, to edit an XML file that operates a photo gallery, isn't easy enough, you must muster XML, XSLT and XPATH to do that.
    Best of Luck.
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Threads v Timers
    Many thanks PRR, nicely explained but I wanted to know another thing. Suppose, in an data application using AJAX when we use System.Thresdin g.Thread.Sleep( 3000) and pause the UpdateProgress for 3 seconds, does it not do something(suppo se updating data in a ListView) after a certain interval? I mean, it seems doing something like Timer though both are different in nature, no doubt.
    Best of Luck.
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Passport Authentication .NET 3.5?
    Yes, it's supposed to be a legacy technology.
    Passport is a Centralized Directory of user information that web sites can use, in exchange for a fee, to authenticate users.
    But you can download and review the free Microsoft .NET Passport Software Development kit from http://support.microsoft.com/?kbid=816418
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to View the Selected item in Listbox
    in .NET
    Have you tried anything in Page_Load()?
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Threads v Timers
    Threads v Timers

    I'd like to extend this interesting thread a little further. What is the basic difference between Timer and Thread. Both are used to pause the application for a certain time, I guess?
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Dropwdown list in IE when using tab
    Besides trying what Frinavale has said, if I use .NET 3.5, then I'd try LinkDatSource as a common data access layer between these two controls.
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Change checkbox to word in gridview
    Is it something like this: when someone clicks the CheckBox(in or out) the Gridview will show the DateTime.Now ?
    See more | Go to post

    Leave a comment:


  • Try this: keep left and right div width to 100px and middle to 800px, hopefully every sceen (now small size is outdated) will fit it.

    Best of luck.
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Dropwdown list in IE when using tab
    First of all clear the AutoPostBack field of DropDownList and make the AutoPostBack of Page_Load() also not true. I hope it'll work fine. I made a simple application following the same rule and tab works fine giving no problem.

    Code:
    public class Country
    {
        private string name;
        public string Name
        {
            get { return name; }
            set { name = value; }
        }
        public
    ...
    See more | Go to post

    Leave a comment:


  • Dynamically creating components is always regarded as a good habit from the coder's point of view. It can only be done when your conception is crystal clear about ADO.NET.
    But there are default classes created by Microsoft to do the heavy lifting. In the present scenario, you don't have to write many codes. Few codes and some dragging and linking do the whole things for you. But again you ought to know the background stories. Otherwise you...
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Refresh expicitly my page
    Please try
    Code:
    protected void Page_Load(object sender, EventArgs e) 
        { 
      
            if (IsPostBack) 
            {
    instead of

    Code:
    protected void Page_Load(object sender, EventArgs e) 
        { 
      
            if (!IsPostBack) 
            {
    I hope your problem will be solved.
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Removing all items from a list view
    After reading your post I myself tested a new website with ListView and databind it with a local database. In fact I had to be careful about those SELECT, INSERT, DELETE queries and you know a tiny dot can mess things up.
    And it runs pretty well. And I just did not have to use Clear() or Remove() methods at all. The application deletes data fantastically without keeping anything in TextBoxes. DELETE button works perfectly.
    Did you...
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Membership with many Web App
    Oh yes, it can be done happily using membership class. All you need to do is put those music and news folders in Member's area and in your page behind code check it so that any anonymous visitor can not enter there without registering.
    Even you add an Administration zone from where you can keep a check on those members!
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Removing all items from a list view
    When you refresh the page, what happens?
    See more | Go to post

    Leave a comment:


  • I completely agree...that's why I told him/her to do the design by himself/herself...

    Shakespeare expressed a similar sentiment in Love's Labours Lost, 1588:

    Good Lord Boyet, my beauty, though but mean,
    Needs not the painted flourish of your praise:
    Beauty is bought by judgement of the eye,
    Not utter'd by base sale of chapmen's tongues
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Membership with many Web App
    In your own domain I'm not sure it's possible. But in your own machine where you have SQL Server 2005 installed, it can be done because you can not run two web applications at one go!
    See more | Go to post

    Leave a comment:


  • sanjib65
    replied to Removing all items from a list view
    It's not clearing because it's databind(that you also know :)). Have you tried the Remove Items method?
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...