Search:

Type: Posts; User: riteshjain1982

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    436

    VS 2008 How to handle Session timeout

    I need to understand how should I handle the session timeout in below scenario:

    1. On Login page user gets validated and its information is saved in Session variable.


    UserInfo obj...
  2. Replies
    17
    Views
    2,042

    Re: [RESOLVED] Is Primary Key is required?

    TG: Based on your extensive experience working with lot of data I Need some advised on a load that DB put on hardware infrastructure; be it RAM/CPU/SDD by using Indexes & various Keys, as you...
  3. Re: newbie question on datagrid page selection

    Yes, you need to re-assign DataSource property.

    try this:



    private void BindGrid()
    {
    using (SqlConnection con = new...
  4. Re: The specified string is not in the form required for an e-mail address.

    Yes


    Yes
  5. Replies
    36
    Views
    2,201

    Re: Page redirection issue

    did you checked the value of yourname variable when your code hit the breakpoint?
  6. Re: The specified string is not in the form required for an e-mail address.

    RequiredfieldValidator for email id is working as it is expected to work......all you need is to use RegularExpressionvalidator or CustomValidator as per your requirement to make sure that user input...
  7. Replies
    36
    Views
    2,201

    Re: Page redirection issue

    You should have posted this is ASP.NET forum.

    Anyway, Put a breakpoint and see if there is any value in yourname variable? may be you should share a code where you are assigning value for...
  8. Re: How to get computer deep hardware details?

    May be This will help you.
  9. Replies
    17
    Views
    2,042

    Re: Is Primary Key is required?

    This is what I wanted to confirm....:thumb:

    Thanks FunkyDexter for pointing out the "danger" of sort assumption I made and explaining how DB engine sort the records without explicit Order by...
  10. Replies
    17
    Views
    2,042

    Re: Is Primary Key is required?

    Thanks FunkyDexter for detail analysis. Unfortunately the current setup write the log entry that start with "yyyy-MM-dd hh:mm:ss" + LogText ; and when records are fetched for a given companyID and...
  11. Replies
    17
    Views
    2,042

    Re: Is Primary Key is required?

    Thanks for your feedback.

    Initially I thought of having ID as surrogate PK but later on realized that this column will never be used in any of the transaction or FK to other table so decided not...
  12. Replies
    17
    Views
    2,042

    [RESOLVED] Is Primary Key is required?

    Hi,

    I have created a log table in MS SQL database with below column details
    (
    ID int not null Identity
    CompanyId int not null
    LocationID int not null
    LogData varchar
    )
  13. VS 2010 Re: Simple code is not working properly after convertation From C# to VB2010

    I am pretty much sure that it will be against Google's TOS to use their online translation service via any other medium other than their own interface otherwise they would have never come up with the...
  14. VS 2010 Re: Simple code is not working properly after convertation From C# to VB2010

    on a side note, as Google's translation API's are paid service so isn't it going to be illegal to fetch data using http post method without Google's consent :rolleyes:
  15. Re: SQL - Count Two Tables into Two Columns

    just add where PACKCOUNT<>0 and TNTCOUNT<>0 in the end
  16. Re: SQL - Count Two Tables into Two Columns

    Is this what you are looking for!!


    select Users.UserName , ISNULL(T1_1.PACKCOUNT,0)PACKCOUNT,ISNULL( T2_1.TNTCOUNT,0)TNTCOUNT
    FROM
    (
    select DISTINCT UserName FROM Outbound_Packing_Records...
  17. Re: SQL - Count Two Tables into Two Columns

    you have used inner join of Outbound_Packing_Records with Outbound_Packing_Records_Tnt so is it safe to assume that if user name does not exist in Outbound_Packing_Records than it will also not be in...
  18. Re: Anyone Please Help! Syntax error in UPDATE statement error

    may be you should stop posting here


    Did you tried anything what is being said by JMC to "Learn"? may be you should take out some time to go through the tutorial provided in his blog.

    Also in...
  19. Re: [RESOLVED] how to add data row to a data table dynamically

    thanks for correction.......at a time of this thread I just used to work with vb.net and not c#...so I just type it out here without using VS in a hope that OP will get my point...

    just wondering...
  20. Re: [help] syntax error in UPDATE statement.

    try by enclosing "TransDate = " & Date & "," _ between single quote
  21. Replies
    6
    Views
    783

    Re: Finding Sets

    I am not sure about efficiency unless you see the execution plan and run against actual database, but I used table variable to store all ID's in table so it can be efficiently used in IN clause + to...
  22. Re: [help] syntax error in UPDATE statement.

    if you think that your problem is similar then you should have read all above suggestion before doing cross posting and even after doing so if you failed to solve your problem, you should have...
  23. Replies
    6
    Views
    783

    Re: Finding Sets

    May be this will help:


    create table Association
    (
    PK int not null identity(1,1),
    TraitID int NOT NULL,
    IdentifierID int NOT NULL
    )
    GO
  24. Re: ComoboBox DisplayMember vs ValueMember

    can you show us your "save" code.
  25. Replies
    12
    Views
    2,427

    Re: Copy Paste Detection

    well my friend has contacted them as he is looking for work from home option. Even their pay per page + other T&C was also looking good & attractive except the point where they say you can not use...
  26. Replies
    12
    Views
    2,427

    Re: Copy Paste Detection

    they are not evaluating any candidate for job offering, they just want all the digital data in .txt file generated using notepad.

    Even i asked them same question, as long as they are getting...
  27. Replies
    1
    Views
    708

    Re: Parameters.AddWithValue()

    just pass "q" as a parameter value and in your query you can update(I assume you want to update data) the column value as update TableName set quantity = quantity + @quantity where ID = @ID
  28. Re: Object Reference Not Set To An Instance Of An Object

    From above screenshot its not quite clear which line threw an exception also never worked with AddinExpress.MSO but I would check for following thing:
    1. Is AddinExpress.MSO registered properly on...
  29. Replies
    3
    Views
    886

    VS 2012 Re: Click the mouse on the form

    This should help you.
  30. Replies
    2
    Views
    750

    Re: Help incrementing with sql

    I am not sure what logic you are using to update your data, but by simply looking at you code it seems you need to uncomment below line to to pass @QuantidadeTotal parameter required in your query...
  31. Replies
    12
    Views
    2,427

    Re: Copy Paste Detection

    it's an image it self (scanned copy of handwritten pages...some kind of novel)....I told my friend to not to go ahead with this job contract as if that company is really serious enough about job gets...
  32. Replies
    9
    Views
    1,045

    VS 2012 Re: Trying to make an update

    You should have read the post: you can refer this tutorial
  33. Replies
    9
    Views
    1,045

    VS 2012 Re: Trying to make an update

    your update query more look like a Insert command, update query should look like this


    update TableName SET Column = 'value'


    also use parameter to pass the value; you can refer this tutorial...
  34. Replies
    2
    Views
    2,349

    Re: Open pdf document from network drive

    Process.Start() will run on the server hence it will not going to open up pdf file on client's browser. May be you can copy the file to server using IO.File.Copy() method and then use below code that...
  35. Replies
    12
    Views
    2,427

    Re: Copy Paste Detection

    hmm option 1 makes some sense as they will going to install their propriety software to open the source image file or it may be a gimmick to not to pay in the end by saying you have violated the...
  36. Replies
    12
    Views
    2,427

    Copy Paste Detection

    small story first: Recently I visited a data entry job providing company along with my friend. According to their job requirement one has to type it out all the text from image into notepad file, so...
  37. VS 2008 Re: Need Suggestion for Langauage Translation

    thanks for the link but I feel I have to go for a tool instead of service as my client will going to have his own team to verify & rectify the primary translation done by the tool.
  38. VS 2008 Re: Need Suggestion for Langauage Translation

    can you suggest me some of the professional translation you might have used !
  39. VS 2008 Re: Need Suggestion for Langauage Translation

    yea it look like I always end up in a situation where I am a lone walker :p I wish non techie client will understand that its not as simple as using Google translator tool :D
  40. VS 2008 Re: Need Suggestion for Langauage Translation

    yes it's a commercial product.........so that mean I am left with very little option..... seems like if I have to consider the performance of the application then I have to go ahead with solution2...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width