When I added more data to the database the fileorder was not working correctly because the reason was that there is a 1 to many relationship with cases and files. So I have to take caseid into consideration. I modified the stored to handle this but I am still having problems.
When I try to move...
I have a file list inside a datagrid that looks like this:
FileName FileDescription
box box names moveup movedown
cats cat names moveup move down
moveup and move down are links that allow the userto rearrange the fileorder.
This is how the data is...
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...
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...
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...
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...
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...
here is muy code:
----------------------------------------------------
OnlineCaseCategoryController occc = new OnlineCaseCategoryController();
dgRevCatDisplay = new DataGrid();
dgRevCatDisplay.DataSource = occc.List();
dgRevCatDisplay.DataBind();
occc = null...
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...
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...
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...
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...
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...
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)...
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)...
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...
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...
'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 =...
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.