Search:

Type: Posts; User: ssingh

Page 1 of 9 1 2 3 4

Search: Search took 0.17 seconds.

  1. Replies
    8
    Views
    8,430

    Re: XML and XSLT design question

    This sample works for me as well. My code is in .js file and still doesn't work
  2. Replies
    8
    Views
    8,430

    Re: XML and XSLT design question

    That would be a great help if you could please provide me some documentation.
    Thanks
  3. Replies
    8
    Views
    8,430

    Re: XML and XSLT design question

    I am not sure what you are asking. Do you mean I should use Fiddler?

    From what I have found so far this code is not working on my machine but working for another developer. So it is not IE 11...
  4. Replies
    8
    Views
    8,430

    Re: XML and XSLT design question

    I have found that it is an IE11 issue. The code works in Chrome. Apparently, IE11 is not supporting transformNode it seems. Any suggestions how to fix this?
  5. Replies
    6
    Views
    2,191

    Re: XML data from stored procedure SQL SERVER

    I have a similar situation, if you guys could help with that as well. The thread is located here-

    http://www.vbforums.com/showthread.php?833781-XML-and-XSLT-design-question
  6. Replies
    8
    Views
    8,430

    XML and XSLT design question

    The situation is I have the .NET code which is functional, but some of the tables and stored procedures have been accidentally dropped. Weird situation - but I have to deal with it!

    Here is the...
  7. Replies
    6
    Views
    2,191

    Re: XML data from stored procedure SQL SERVER

    Thank you very much! It worked!
  8. Replies
    6
    Views
    2,191

    XML data from stored procedure SQL SERVER

    In our database there are a few objects that were dropped accidentally. I have to reverse engineer the SQL based on output I see in .NET code.
    Basically, the output of XML is
    <DATA>
    <Assigned...
  9. Replies
    4
    Views
    2,854

    Re: c# Windows Application GridView Arrow Keys

    Well I was able to find the solution to the problem, so thought of sharing. The event is ProcessCmdKey.
    The main challenge for using this event was that I wanted to display the contents of column 7....
  10. Replies
    4
    Views
    2,854

    c# Windows Application GridView Arrow Keys

    I have a gridView on a Windows form. I need to display contents of a cell in a textbox. I can do it on click of the cell using CellContentClick, but if user uses tab or arrow keys to get to a...
  11. Re: sql script to insert data into relational tables

    Thanks jmcilhinney for giving the idea of SCOPE_IDENTITY(). techgnome, you mention that you may mass insert items. That brings another question. You would obtain SCOPE_IDENTITY() for each row you...
  12. sql script to insert data into relational tables

    I need to create test data for an application. There are a number of relational tables. Would you recommend entering data manually one-by-one into tables or create a script using Transaction so that...
  13. Thread: Free Images

    by ssingh
    Replies
    2
    Views
    736

    Free Images

    Is there a free source to get images. Not sure if it is legal to use images from google images on yur web site. Any suggestions?
    If not, I can use Royalty Free Images? Please suggest some good...
  14. Replies
    3
    Views
    18,198

    MVP – Model View Presenter

    I am aware that this is MVC forum and not MVP forum, but I didn't know in which forum to ask about this concept.
    Please guide me some sources (hands-on-tutorial and concepts ) where I can learn...
  15. Replies
    7
    Views
    825

    Re: SQL Server data security question

    Thanks for explanation!
  16. Replies
    7
    Views
    825

    Re: SQL Server data security question

    Thanks for your responses.

    Tg, can you please elaborate/or share sample code how you can set such triggers on tables?
  17. Replies
    7
    Views
    825

    SQL Server data security question

    How can an organization track if someone with full permissions to database (DBA) edits/updates data in tables either via an update query or by directly editing values in a SQL Server table?
    I am...
  18. asp.net gridview shifts on select linkbutton

    I have a GridView inside a Multiview. If user clicks the select linkbutton, the link open in another tab (external website). It works fine. However, in the original page the gridview just shifts to...
  19. Re: Response.redirect to new tab using parameters in querystring

    Ok agreed! So how do I get the id (DataKeys) of the gridview in the aspx page?
  20. Re: Response.redirect to new tab using parameters in querystring

    Tg,

    The only reason I want it in the code behind is because I need to read the values in the selected row of the grid. So when the user clicks 'select' action item on the grid it goes to new tab...
  21. Re: Response.redirect to new tab using parameters in querystring

    Can you please share with me how would you use that code in your code behind file.
    In my 'link' , I am building a querystring with paramaters (grid values).
  22. Re: Response.redirect to new tab using parameters in querystring

    well, I found the answer and it worked for me so I thought of sharing.
    Earlier I was using:
    Response.Redirect(link);
    which was opening in the same window. But I wanted to open new page on the new...
  23. Response.redirect to new tab using parameters in querystring

    I have a grid on my first page. When user clicks 'select' link on grid, I want to select the parameters from the row and open a new page in the new tab using parameters on the first page. The...
  24. Replies
    1
    Views
    703

    VS 2010 Versioning data problem

    I have to create a workflow application in ASP.NET and C# in which an initiator saves data and sends it to approver.
    Once the approver submits and approves contents of the screen, there can be...
  25. Replies
    3
    Views
    2,319

    VS 2010 Re: Confirm Delete in DetailsView

    What I'm saying is, that the alert does pop up, but regardless you select yes or no it calls the delete procedure. The alert ('Record successfully deleted.');"
    pops up first and then the code hit...
  26. Replies
    3
    Views
    2,319

    VS 2010 Confirm Delete in DetailsView

    I'm using ASP.NET 4.0. Having hard times figuring out how to get confirmation from user before deleting in a DetailsView.
    I'm using buttons
    I did google and found Javascript code to get...
  27. Replies
    1
    Views
    1,803

    'xxx' is not a member of 'ASP YY_aspx'.

    I have a gridview and a detailsview. when user selects a row in gridview, the detailsview dvEmail opens is view (part of mulitview).
    Now the problem is, that there is a cancel button on the dvEmail,...
  28. VS 2010 CompareValidator in GridView used to compare two dates issue

    I have a gridview and the compareValidator is working perfect for comparing the dates in the FooterTemplate, however it is not working in the EditItemTemplate.
    The only difference between the...
  29. Replies
    1
    Views
    945

    VS 2010 validaton controls in Gridview

    I need to put some validation controls like requiredFieledValidator etc in gridview, but when I add them in EditItemTemplate or FooterTemplate it messes up the alignment of textboxes in the grid . ...
  30. Select a row in gridview without select button/link

    I want to select a row of gridview and display a DetailsView. There is issue of real estate on page so I do not want to use a select button. Please advise how can we achieve this?
    Thanks
  31. VS 2010 Populate ChildNode when parent node is Selected

    I'm populating a treeview dynamically. On OnTreeNodePopulate I call a sub and populate the Parent nodes. I do not want to populate the child nodes at this time.
    Upto this point it works fine.
    Now...
  32. sql server 2008 Jobs monitoring/documenting

    We have a large number of jobs running on various SQL DB servers. Is there a tool to find out what is actually running and what they all do?
    Management want all this to be documented. We are using...
  33. Replies
    1
    Views
    2,607

    sample healthcare database

    I'm looking for some sample healthcare database preferably sql server 2008r2, if not Access for download. Anyone knows if one is available?
  34. Replies
    1
    Views
    1,625

    Microsoft Enterprise Library tutorial

    I'm not sure where to post this question.
    Could someone please guide me if there are any good free tutorials/videos out there to learn about Microsoft Enterprise Library?
  35. Thread: brand strategy

    by ssingh
    Replies
    1
    Views
    514

    brand strategy

    Please suggest some standard tools used in industry for-

    designing logos
    graphic designs
    website designs
    paper publications
  36. Replies
    3
    Views
    1,023

    VS 2010 Re: Delete Files on Server older than X days

    Any thoughts if it can the task be done in Windows Workflow foundation?
  37. Replies
    3
    Views
    1,023

    VS 2010 Delete Files on Server older than X days

    I need to write an app to delete files on server Older than X days to clean up disk space.
    The job/app needs to be scheduled to run say once in a month.
    Please suggest what would be the best way to...
  38. Replies
    7
    Views
    5,552

    VS 2008 [Resolved]: Read/open PDF file on remote server

    Finally I got the code that works so thought of sharing with the group!
    strUNCPath for example "\\server\volume\directory\fileName.pdf"


    Protected Sub ReadFile(ByVal strOperation As...
  39. Replies
    7
    Views
    5,552

    VS 2008 Re: Read/open PDF file on remote server

    Dim Path = "\\server\myshare\File.pdf"
    System.Diagnostics.Process.Start(Path)

    is only working when I run the website locally and access file on remote file share. However, if I publish the...
  40. Replies
    7
    Views
    5,552

    VS 2008 Re: Read/open PDF file on remote server

    This code is letting me read the properties but does not open the file-
    fullFileName is UNC path like

    \\servername\path\file.pdf


    Dim fs As New...
Results 1 to 40 of 334
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width