User Profile

Collapse

Profile Sidebar

Collapse
kbipul
kbipul
Last Activity: Apr 2 '08, 10:18 AM
Joined: Nov 6 '06
Location: Mumbai,India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kbipul
    replied to Problem with cookies
    in .NET
    No, the login of that user is creating problem everywhere.

    Can it be a problem of some data?if yes, then what should i look for there?
    I am amazed because when the cookie is being created (in the login page), then all the data gets stored there but as soon as it is requested on the default page, the problem arises....
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Problem with cookies
    in .NET
    It is a cookie cookie.

    And it cant be changed as it is an application which is very big and widely used.
    The problem is not with the cookie settings as I am checking the proceedings in the code. Its working with my login ID and Password (and for many more people's login credentials), but its causing problem with a particular user's credentials....
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Search Engine
    in .NET
    I could not get the task done . I have this sample code which is used to populate the gridview with the file names. This code is working fine


    How can the results be filtered? Someone please edit the code so that it can filter the data. I am clueless.


    using System;
    using System.Text;
    using System.Data;
    using System.Configur ation;
    using System.Collecti ons;
    using System.Web;...
    See more | Go to post

    Leave a comment:


  • kbipul
    started a topic Search Engine
    in .NET

    Search Engine

    Hi

    In a web application , I need to create an aspx page(in C#) which can serach the files present on the server at the specified locations.

    The search parameter may be the file name, extn name, location, fully or partly. The resulting file names should be displayed in a datagrid.

    I am clueless about the functionality involved to create this search engine.

    Can anyone help me?
    See more | Go to post

  • kbipul
    started a topic Problem with cookies
    in .NET

    Problem with cookies

    In a widely used web application, a user says that he is not able to login.

    I checked and found out.



    In the login page , a cookie is created and its populated with the userid, and many other datas like his serial code, date of last access, rights etc.



    Then the page auto redirects to the Default page.Here the same cookie is retrieved and all the datas are further used...
    See more | Go to post

  • kbipul
    replied to Converting Rows into Columns
    I have the query this way, can u please help me again:

    SELECT
    dbo.Certificati on_Category_Mas ter.Data,

    COUNT(dbo.Certi fication.Certif ication_ID ) AS [COUNT]
    FROM dbo.Certificati on INNER JOIN
    dbo.Certificati on_Master ON dbo.Certificati on.Certificatio n_ID = dbo.Certificati on_Master.Certi fication_ID INNER JOIN
    dbo.EMPLOYEES ON dbo.Certificati on.Employee_Cod e...
    See more | Go to post

    Leave a comment:


  • kbipul
    started a topic Converting Rows into Columns

    Converting Rows into Columns

    Hi,

    I have written a query that I need to get data which are to be displayed in the SQL 2005 reports.

    I am getting the result as



    Data Count

    A 2

    B ...
    See more | Go to post

  • kbipul
    replied to script running error
    in .NET
    protected void gvCerApproveLnd _RowDataBound(o bject sender, GridViewRowEven tArgs e)
    {

    if (e.Row.RowType == DataControlRowT ype.DataRow)
    {
    CheckBox chk = (CheckBox)e.Row .FindControl("c hkAgreement");
    //((CompareValida tor)e.Row.FindC ontrol("Compare Validator112")) .ValidationGrou p += e.Row.RowIndex;
    ((RequiredField Validator)e.Row .FindControl("R equiredFieldVal idatorC")).Vali dationGroup...
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to script running error
    in .NET
    I am unable to find out the server error. Anyways, I am not getting any server error at the page load event. I am clueless now....
    See more | Go to post

    Leave a comment:


  • kbipul
    started a topic script running error
    in .NET

    script running error

    I have created an application is .Net 2.0 + using WWF of .Net 3.0 too. When trying to access a page in the application through IE 6.0, the page becomes unstable and i get an error message box stating :

    "A script on this page is causing the internet explorer to run slowly.if it continues to run,your computer may become unresponsive.Do you want to abort the script?"



    I tried to search for solution...
    See more | Go to post

  • kbipul
    replied to Regular Expression problem
    in .NET
    You can best use [w]*.
    It will solve your problems...
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to datagrid
    in .NET
    hi

    it is very much possible

    Go to the HTML view of the designer page...

    Search for Datagrid tag...

    Remove all the tags inside it related to 'style' .
    Instead use colspan and put the values in percentage ...eg colspan="20%"

    This would solve your purpose
    See more | Go to post

    Leave a comment:


  • Even i had to face this problem many times...

    I had to format my machine each time...
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to web form
    in .NET
    The best way is to use a hyperlink.On the properties window of the hyperlink,find the property ,navigate to.Add "webform2" in this property.

    The other way is to use Response.Redire ct("Webform2") on the event that you want to take place....
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Installating a project
    in .NET
    Hi

    There are several ways for this,but the best way according to me is:

    1. you first need to install visual studio on the client machine..
    2. Open your project,go to the dropdownlist at the top where "Debug" is selected by default and change it to release.
    3. Build the project
    4. An .exe file is created in the bin/release folder of the project.
    5. Now remote access the...
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Connection
    in .NET
    Hi,

    I have got the solution through a friend......... .........



    SqlParameter objpara = new SqlParameter();

    // For datetime

    objpara = new SqlParameter("@ LogDateTime",Sq lDbType.DateTim e);

    objpara.Value = DateTime.Now;

    com.Parameters. Add(objpara);



    this type of objects were required to locate the types of...
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Connection
    in .NET
    Ya I tried after removing the datetime field.But still I could not get the desired result.The same problem continues for the other field after removing the datetime field..
    and the example that you sent to me is not very clear to me...May be I am not that well versed to get it............
    See more | Go to post

    Leave a comment:


  • kbipul
    replied to Connection
    in .NET
    Hi, i am getting the error

    "Procedure 'usp_addloginto table' expects parameter '@LogDateTime', which was not supplied."...
    See more | Go to post

    Leave a comment:


  • kbipul
    started a topic Connection
    in .NET

    Connection

    Hi,

    I need to insert the entries of the log file into a database table..
    I have made a stored procedure but there is some problem .............I am unable to rectify that.........

    SqlConnection con=new SqlConnection(" Data Source=******** ***;Initial Catalog=WebServ icesLogFiles;Us er Id=sa;Password= sa;");
    con.Open();
    SqlCommand com=new SqlCommand("usp _addlogintotabl e",con);...
    See more | Go to post

  • kbipul
    replied to Please recommend me a book on vb.net
    in .NET
    The best book to solve your purpose is:
    Professional VB.Net ...Its by Wrox Publication...
    Its a bit tougher for a beginner to comprehend this book in the beginning but this is the best book available in the market...
    If u start following this ,then u will never have any problem with VB.Net in the future....
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...