Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Sanjeet1
  • Order by date
  1. Sanjeet1

    Strored proc not working correctly:

    ...moving down oc_OnlineCaseFileSortOrder 2, 17, -1, for moving up Here is my stored proc: REATE PROCEDURE [dbo].[oc_OnlineCaseFileSortOrder] /***************************************************************************************** oc_OnlineCaseFileSortOrder...
  2. Sanjeet1

    Stored proc not working correctly

    ...with the older sortorder with the new sort but it does ot work. Here is my stored proc: CREATE PROCEDURE [dbo].[oc_OnlineCaseFileSortOrder] /***************************************************************************************** oc_OnlineCaseFileSortOrder...
  3. Sanjeet1

    My custom validation is not working correctly.

    My custom validation is not working correctly. I am trying to use it to display an error message if a file should be updated or not. When the page loads the filename is stored in viewstate _viewstate. The user can then select a file from the browse button and make changes. The custom...
  4. Sanjeet1

    not hitting a function

    I try calling the customvalidator here: private void Update_Click(object sender, System.EventArgs e) { if (!Page.IsValid) //I set a break point here return; -- --- -- Here is my fucntion: I set a bbreakpoint and it never hits the function. anysuggestions? private void...
  5. Sanjeet1

    Stringbuilder question

    1. I would like to retrieve all the values from the form: Title.Text,CategoyId.SelectedItem.Text,EditAuthor.Text,StatusId.SelectedItem.Text Apend these to the sting builder class. 2. Infor the submitter: sb.AppendFormat( "{0};", ui.Email );. This shoul dgive me the users email. and inform...
  6. Sanjeet1

    Stringbuilder question

    I would like to include the Title.Text,CategoyId.SelectedItem.Text,EditAuthor.Text,StatusId.SelectedItem.Text, info in my email notification. I am sending an email to the submitter of a case. I am getting the info I need to send from the controls on the screen. Here is my code: private...
  7. Sanjeet1

    Problem nesting a datagrid. The Child datagrid is not display data

    I am having a problem passong in the categoary id into the child datagrid. I want the page to display Reviwers By caetogaries. For Ex. CATEGOARIES REVIWERS Cat1 PAUL JIM...
  8. Sanjeet1

    Problem getting a datagrid to display information.

    here is muy code: ---------------------------------------------------- OnlineCaseCategoryController occc = new OnlineCaseCategoryController(); dgRevCatDisplay = new DataGrid(); dgRevCatDisplay.DataSource = occc.List(); dgRevCatDisplay.DataBind(); occc = null...
  9. Sanjeet1

    Problem getting a datagrid to display information.

    I have a datagrid called: dgRevCatDisplay. When the page loads no data gets displayed. I tried setting a breakpoint on the datagrid all the objects and methods that instantiate the datagrid seem to be ok. However in debug mode when I type the object name in the immediate window I get an...
  10. Sanjeet1

    PROBLEM OPENING a .NET SOLUTION

    When I try to open up a solution I get a dialog box with username and password. When I type in the username and passowrd (the same user name and password I use to log into windows) I get an error message stating user name nd password not correct or you don't have permission for this operation...
  11. Sanjeet1

    Admins Group (Group Permissions)

    I am doing a dotnetnuke tutorial. I gave full access to the local ASPNET account. I gave full access t o the dotnetnuke folder and the file LogConfig.xml.resources. I also gave ASP.nET access to the C drive. I tried deleting the file so DNN could recreate it. None of these worked. I am...
  12. Sanjeet1

    problems creatig a windows service

    OK I tried his but got another error message: C:\>installutil.exe "C:\TEMP SANJEET\Raj's Multihreaed App for Axolotl\bin\Debug \WindowsServce1.exe" Microsoft (R) .NET Framework Installation utility Version 1.1.4322.573 Copyright (C) Microsoft Corporation 1998-2002. All rights reserved...
  13. Sanjeet1

    problems creatig a windows service

    I have a windows service. I am trying to build it so I can call it. I tried using the command: installutil.exe WindowsService1.exe but that did not work. Here s the ouput error message. C:\Documents and Settings\Administrator>installutil.exe C:\TEMP SANJEET\Raj's Mu ltihreaed App for...
  14. Sanjeet1

    Error messages in a multithreaded application.

    I don' have a threadclass I just call the the thread functionality in the onstart section of the windows service: protected override void OnStart(string[] args) { Console.WriteLine("Connection accepted from "+s.RemoteEndPoint); byte[] b=new byte[1024]; int k=s.Receive(b)...
  15. Sanjeet1

    Error messages in a multithreaded application.

    I have a windows service. The windows service has 2 files. Winsowsservice.cs and Thread.cs. The windowsservice receives a byte array converts it to a string and passes it to a thread instance in the thread.cs file. Here is the code: byte[] b=new byte[1024]; int k=s.Receive(b)...
  16. Sanjeet1

    Using the RegEx mehod to insert string values ino array elemens.

    I tried that I got the same error message. Thanks.
  17. Sanjeet1

    Using the RegEx mehod to insert string values ino array elemens.

    Using the RegEx mehod to insert string values ino array elemens. I retreive a byte array through a tcp client. I then inser the byte array ino a string. string cs = encoding.GetString(b); The String variable contains info similar to this: MSH|^~\\&|AXO|Axolotl Corp.|Elysium...
  18. Sanjeet1

    Displaying a pdf file in .net page

    I have a default page and image page. The default page calls a web service, passs three parameers are retreives the URL for the pdf documnt sitting in my images folder. Once I get the URL I need to display the pdfdocument on the images page. Any idea how this is done? How would I do that in...
  19. Sanjeet1

    How do I insert an image ino an image object from a filestream?

    'Call Webservice to pass 3 parameters Dim WS As New ImageRetreival.WS1.GetImage Dim ImageDB As Byte() 'Dim d As System.Text.Encoding ' ImageDB(0) = WS.RetreiveImageDB(userid, patientid, recordid) Dim ImgDbstr As String = WS.RetreiveImageDB(userid, patientid, recordid) 'btyes =...
  20. Sanjeet1

    Problems calling a web service from an .aspx page

    I meant calling from a web page sorry. I don't have a problem passing in the parameters its only when the byte array gets returned I get the error message.

Part and Inventory Search

Back
Top