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...
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...
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 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 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...
When I call my web service from a web service I use this line of code:
ImageDB(0) = WS.RetreiveImageDB(userid, patientid, recordid)
This is the format of my web service:
<WebMethod()> _
Public Function RetreiveImageDB(ByVal uid As String, ByVal pid As String, ByVal rid As String) As...
When I call this web service I receive a byte array that contains an image.
The web page that calls the web service contains an Image object.
I need to display the mage. Here is my code. How do I retreive the image from the byte array and insert it into the Image object?
'Call Webservice to...
Here is my my web service: I am trying to retreive an image data type.
<WebMethod()> _
Public Function RetreiveImageDB(ByVal uid As String, ByVal pid As String, ByVal rid As String) As String
Dim userid As String
Dim patientid As String
Dim recordid As String...
I am writing a cookie in c# to pass to a different server. I am not getting any error messages when I compile. The cookie does not work correctly. When I step through the debugger I can see the values being passed into the cookie. Do you have any suggestions...
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.