User Profile

Collapse

Profile Sidebar

Collapse
silwar
silwar
Last Activity: Apr 23 '11, 07:18 PM
Joined: Mar 31 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Get the cover of book as image. store it separately. Whenever book link is clicked fetch it from the folder where you have saved it.

    you can also use adrotator or some type of content rotater for that purpose. and can set the size of image to be displayed small.
    See more | Go to post

    Leave a comment:


  • how to create confirm window with data from parent window before data insertion in DB

    I have a record insertion webform(parent form) with save button. When I click save button I need another confirmation window(child form) to open with all data entered from parent window so that user can re-check values entered or may be edit them there(if possible). and only than insert. any help. i don't know where to start.

    for e.g. we have preview window here in this site to preview what we typed.
    See more | Go to post

  • silwar
    started a topic Should i create separate login table??

    Should i create separate login table??

    Qusetion 1

    I am developing a website mainly for maintaining students record in asp.net and using sql server 2005 database as backend.

    These site has three types of user Admin, faculty and student.

    Each user have some similar info (user id, password, email, contactno, status) and some different info to be stored(e.g. department, class, section, etc).

    All will login to website.

    I have...
    See more | Go to post
    Last edited by silwar; Apr 14 '11, 05:19 PM. Reason: Editing information provided to make it more understandable

  • silwar
    replied to Login failed for user
    while login give servername "." without quotes

    i.e. using dot. It will login using root account
    See more | Go to post

    Leave a comment:


  • Well i found the problem. it was select statement string
    i.e.

    thats how I created string

    Code:
    string selSQL;
            selSQL = "SELECT * FROM authors";
            selSQL += "WHERE au_id=@value";

    This one works

    Code:
    selSQL = "SELECT * FROM authors WHERE au_id=@value";
    I think while declaring string for command object we can't append it...
    See more | Go to post

    Leave a comment:


  • 1. for PNR column choose data type numeric.

    2. Go to Column properties window and expand Identity specification option.

    3. Where it is written Is Identity select yes.

    4.In the same menu you can also provide Identity increment for how much it increments every time e.g. If you want to increment value by 1 number every time data is recorded put value 1.

    5. you can also set starting seed so that you...
    See more | Go to post

    Leave a comment:


  • Drop down list index changing displaying error Incorrect syntax near '='

    Hi,

    I have already stored value of author id in list item value while page loads. but when I change index of drop down list to view author information error is shown. I tried to debug using check points and it seems Sqlreader isn't reading database second time.

    Incorrect syntax near '='..

    Here is my code

    Code:
    using System;
    using System.Collections;
    using System.Configuration;
    using
    ...
    See more | Go to post
    Last edited by silwar; Mar 31 '11, 09:29 AM. Reason: Editing some code
No activity results to display
Show More
Working...