User Profile

Collapse

Profile Sidebar

Collapse
shanboy
shanboy
Last Activity: Nov 25 '13, 05:08 PM
Joined: Jul 28 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Displaying content of every hyperlink to a common div

    Code:
    <html>
    <head>
    
    <base target="body"/>
    </head>
    
    <body>
    
    <div id=wrapper>
    
    	<div id=header>	
    	    Header goes here
    	</div>
    
    	<div id=NavMenu>
     	   <nav id="dropdownmenu">
    
                    <li> Mail
    ...
    See more | Go to post

  • generating radio buttons dynamically on columns table Online question paper generator

    I want to create an online objective type question paper generator which generates random questions based on the number of questions to be generated from a particular subject say science.

    I have a stored procedure that generates the questions randomly and inserting them into a temp table for displaying them in a GridView.

    Further to this I would like to retrieve the question followed by a radio button against each option...
    See more | Go to post
    Last edited by Frinavale; Jun 3 '13, 02:53 PM. Reason: Fixed grammar and spelling.

  • WSUS server on local intranet cannot synchronise to windows update server

    WSUS ver 3.2.7600
    OS Win Server 2003

    we have one (only) wsus server which provides updates to other computers on LAN.we connect the wsus server on internet for synchronisation and downloading updates.
    once i diconnect wsus server from my local intranet for synchronisation with windows update site,my wsus console does not show the wsus server tree options .
    Error code is attached here for reference.
    Kindly...
    See more | Go to post

  • Thanks everyone for replying

    @weaknessforcat s

    i am using stored procedure(SP).I n that i have used 'insert into' in a temp table and retriving the records from there.
    i would like to use these records as output parameter in the SP to display them in a aspx page.As far as i know we should give the data type of out parameter .
    what will be the data type of these records table or any other type.
    See more | Go to post

    Leave a comment:


  • How to store the records returned by a query using while loop in SQL server 2000

    I want to generate random questions from a table in sql server
    i would like to use stored procedure whose input parameter will be integer that comes from web page(.aspx).

    Below is the query to generate 10 random questions.
    can i store the records in a temp table or array in sql server (i doubt if it is available) from where i can display them on a .aspx page using sqldata adapter in ASP.NET 2.0(VS 2005). Is there a better...
    See more | Go to post

  • shanboy
    replied to problem in php script to upload a file
    in PHP
    Solution: i had not close the <input> tag. Nowit is works.
    See more | Go to post
    Last edited by Niheel; Jul 16 '12, 01:59 PM.

    Leave a comment:


  • shanboy
    started a topic problem in php script to upload a file
    in PHP

    problem in php script to upload a file

    The upload html page i'm using

    Code:
    <html>
    <head> <title> </title></head>
    <body> 
    <form enctype="multipart/form-data" name="upload" action="upload.php" method="post">
    <input  name="file4upload"  type="file"> </input> <br>
    <input name="submit" type="button"
    ...
    See more | Go to post

  • shanboy
    replied to drivers to connect PHP 5.1 to sql server 2005
    in PHP
    Thanx for replying. Is there any other way out
    See more | Go to post

    Leave a comment:


  • shanboy
    started a topic drivers to connect PHP 5.1 to sql server 2005
    in PHP

    drivers to connect PHP 5.1 to sql server 2005

    I want to connect to sql server database from php code.

    OS: Win xp SP3
    PHP ver 5.1.0
    Database : SQL server 2005
    IIS ver 5.1

    What are the drivers needed for the connection to happen?
    I downloaded the php_sqlsrv_52_t s.dll and tried with it. It doesn't work.I think its for PHP 5.2 n above.
    I am not able find the ms sql srv driver for 5.1.
    Plz help me out in getting the drivers...
    See more | Go to post

  • Difference in rate of data transfer in USB ports

    I tried to copy a 3 GB data from hard drive to memory card on a card reader. Initially i tried to copy by connecting the card reader to USB port in the front side of the cabinet.It showed me the timing of close to one hr to copy.
    But when i did the same by connecting it to the USB port at the back it took only 12 mins.
    Why is it so? What is the diff between the USB ports connected to back and front side of the cabinet.

    ...
    See more | Go to post

  • Thanx,got the point all fields in select other than the aggregate fn should be included after group by clause.
    Thanx a lot
    See more | Go to post

    Leave a comment:


  • using group by in tables joined together in sql server

    I am newbie in sql server
    i'm using sql server 2005 and the northwind database
    i wanted to join order and order details tables and calculate the total purchase made by each customer by using group by clause.

    When i used
    Code:
    select orders.orderid,orders.customerid,orders.orderdate,orders.shipcity,orders.shipcountry,
    orderdetails.unitprice,orderdetails.quantity,(orderdetails.unitprice*orderdetails.quantity )as total
    ...
    See more | Go to post
    Last edited by NeoPa; Mar 19 '12, 12:07 PM. Reason: Added mandatory [CODE] tags for you

  • How to get the most out of upgrading RAM on PC?

    I have a pc with intel core 2 duo processor 2.8 Ghz and 2 GB DDR2 SDRAM 400 MHz and my motherboard is Intel DG41RQ .OS i'm using is Windows 7 Pro.

    i recently added one more RAM module of 2 GB with same frequency.
    I find that after adding RAM,it shows 2.96 GB usable.
    Why is it so?
    What's the logic behind it?
    What all needs to be considered before going for an upgrade to get maximum out of it.
    ...
    See more | Go to post

  • Updation of value in one field depending on change in another field in postgresql 9

    hi all
    i have fields date_lastupdate ,peiodicity(dat a type is interval),due_d ate.
    What i'm trying to do is
    when the date_lastupdate changes ,periodicity(wh ich may be different for each row),due_date field gets updated by following formula
    due_date=date_l astupdate+perio dicity

    when i queried with
    Code:
    select areaName,due_date from updation where due_date=due_date+periodicity

    I get...
    See more | Go to post

  • display an alert depending value returned by @@rowcount from stored procedure

    I'm using ASP.net2.0,SQLs erver2005.i have a stored procedure which returns the number of rows affected by a search based on search key.i want that if no rows are returned,an alert box with custom message should appear.

    When i run the code below, i get an error


    Error 2 Cannot implicitly convert type 'object' to 'int'. An explicit conversion exists (are you missing a cast?)



    Code:
    protected
    ...
    See more | Go to post

  • shanboy
    replied to problem in using AJAX toolkit
    Hi frinny
    The issue was the version of AJAX tool kit
    I was using ASP.NET2.0 and AJAXfor 3.5
    When i got the toolkit 1.1 it is running.


    I have vs 2008 and .net framework4.0 and AJAX 3.5.I'm yet to try on that
    See more | Go to post

    Leave a comment:


  • shanboy
    replied to problem in using AJAX toolkit
    For further assitance on AJAx toolkit

    Hi frinny

    Even before i posted this problem i could see the ajaxcontrolkit. dll in my bin folder.Is this what happens when u add a reference

    As u suggested i added reference to the .dll .
    even then i get the same.
    To have a better understanding of my issue i've attached a screenshot .When i drag autocompleteext ender to design view,i get a circle with a...
    See more | Go to post

    Leave a comment:


  • shanboy
    started a topic problem in using AJAX toolkit

    problem in using AJAX toolkit

    Hi guys

    i'm newbie to AJAX usage.

    i'm using visual web developer 2008 express edition

    i downloaded AjaxControlTool kit.Binary.NET3 5 from codeplex site.

    i extracted the zip file.

    I added the toolbox to visual web developer by adding a new tab naming it ajax kit.

    added tools to it by choose item and selected AjaxControlTool kit.dll ,the one i unzipped.
    ...
    See more | Go to post

  • It works in stored procedure but not the right result is got

    Hi Frinny
    Thanx for responding
    i have heard of query analyzer
    But haven't used it yet,plz guide me if u can

    My stored procedure works when I provide column name CD_NAME and win as search string in New query of SQL server 2005 and it gives a blank table with field names and no record

    [code]execute spSearchCombo CD_NAME,w...
    See more | Go to post

    Leave a comment:


  • Format of local variable as input parameter in stored procedure in sql server

    Stored procedure

    ALTER proc [dbo].[spSearchCombo](@searchBy nvarchar(50),@s earchKey nvarchar(50)) as
    select * from CD_DETAILS where @searchBy like '%' +@searchKey+ '%'


    I'm using ASP.net2.0 with c# to extract rows basedon search key from a text box and searchBy for the column to be searched.

    When i use column name instead of @searchBy which comes from value selected from a ddropdownlist i...
    See more | Go to post
No activity results to display
Show More
Working...