Now the above gives me error because the last parameter "outputMessage.FileByteStream.Length" returns a long type value but the method expects an integer type.
I want to create a web method that accepts a List of custom objects (passed in via jQuery/JSON). When I run the website locally everything seems to work. jQuery and ASP.NET and everyone is happy. But when I put it on one of our servers it blows up. jQuery gets a 500 error after the ajax request with the response being:
System.InvalidOperationException: EditCustomObjects Web Service method name is not valid. [WebMethod] public void EditCustomObjects(int ID, List<CustomObject> CustomObjectList) [code]...
I worked in C Sharp code works vote and found the problem appointed Data ReaderIf you will allow me in the solution
Error 25 Cannot convert method group 'Read' to non-delegate type 'bool'. Did you intend to invoke the method?
Show Erorr also
Line 23: Con.Open ();Line 24: OleDbDataReader dr = cmd2.ExecuteReader ();Line 25: if (dr.Read)Line 26: {Line 27: label2.Text = dr (0);
code
public partial class Default2 : System.Web.UI.Page { System.Data.OleDb.OleDbConnection Con = new System.Data.OleDb.OleDbConnection (System.Web.Configuration.WebConfigurationManager.ConnectionStrings("MyConnectionString").ConnectionString); protected void Page_Load(object sender, EventArgs e)
I get the error - Conversion from type 'DBNull' to type 'Integer' is not valid. - on the line.....
Dim newid As Integer = e.Command.Parameters("@latestRowId").Value.........in vb code behind.
I have the identical code for another page with the exception of the field names and it works fine. The only thing I did differently, as far as I know, is I copied the asp and code behind from the page that works into this page and manually changed the field and table names. I don't know what the problem is. Does anyone see any problems?
Reading from a stream in a single call to Read is very dangerous. You're assuming all the data will be made available immediately, which isn't always the case. You should always loop round, reading until there's no more data.
How should I change the above code to make it 'less dangerous'?
We have a process that calles a url to pull an image (in this case a .tif image) and it calls this function which works most of the time but recently is getting errors. If I step through the While loop of a 92k file it gets to the end and then errors on the following line:
nBytesRead = stStream.Read(baBytes, 0, MAX_BUF)
I have added a Try/End Try statement which appears to work but is there a better option? The error I get is:
System.IO.IOException: Unable to read data from the transport connection: The connection was closed.
Code: Private Function ReadAsByteArray(ByVal stStream As Stream) As Byte() Dim msBuffer As New MemoryStream() Dim swWriter As New StreamWriter(msBuffer) Dim nTotalBytesRead As Integer Dim nBytesRead As Integer Dim baBytes(MAX_BUF) As Byte nTotalBytesRead = 0 nBytesRead = MAX_BUF While True 'ORIGINALLY THE TRY IS NOT THERE Try nBytesRead = stStream.Read(baBytes, 0, MAX_BUF)......
We are using visual studio 2005 and SSMSE for this project. I had already created some pages which is capable of inserting and updating the values on the sql server. After inserting and updating it will redirect to another page to view the result. When I add a homepage, something just mess up. When I insert a new items for the table, it prompts a message, DBnulls cannot be converted to type integer. When I try to check at the sql tables, the data was inserted but I was not able to view the result on the other page.
I would like to read all content that's been written to the output stream. I'm attempting to do this using an HTTP module, and it seems like the obvious timing would be when handling the PreSendRequestContent event.
However, if the output stream seems to be set to write-only, as I can't read using a StreamReader. Is there a way I read and re-write the content without writing my own IIS module?
My web page contains a file upload control that is used to select excel file. What my code does; is to read the content of that file and store its content to DB. Right now, I save this file to server and read its content using OLEDB.I want to know is there any way i can read the content without saving it on the server?
Sub btnAdd_Click(sender As Object, e As EventArgs) 'converting datatypes to integer Dim insertB As Integer Dim insertA As Integer Dim cat As Integer cat = ddl.SelectedItem.Value
I have a simple web site with two pages. One displays a list of files, and the other streams a file when it's clicked in the list. All was fine in production for 6 months, but now I have to move the site to Windows 2008/IIS7. I have it mostly working, but the files don't open properly (in Firefox) because my content-type header is being ignored. On the production site (IIS6) the headers are (using Fiddler):
HTTP/1.1 200 OK Date: Tue, 09 Feb 2010 16:00:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Disposition: attachment; filename="myfile__foo.pdf" Content-Length: 236841 Cache-Control: no-cache, no-store Pragma: no-cache Expires: -1 Content-Type: application/octet-stream
Suppose i have String like this "hgh343", "kjk98". Is there any Function available in .NET that will find the numbers present in the String ? i.e., from first string 343 and from second 98 will be returned.
How can I change the parameter value from Interger to String. Here below is the part of the code that creates problem; the constant "sqlStatement" is as string, but when the parameters "@ProdColor" read the value it returns an integer instead of the proper type which is a string. I have tried every ting like: CType(sqlStatement(splitItems(1)), string) Or convert or parse, but it keeps returning the wrong type.
Const sqlStatement As String = "INSERT INTO ProductDetails (ProdID,ProdColor,ProdSize) VALUES" If item.Contains(",") Then splitItems = item.Split(",".ToCharArray) cmd.Parameters.AddWithValue("@ProdID", SqlDBType.Int).Value = sqlStatement(splitItems(0)) cmd.Parameters.AddWithValue("@ProdColor", SqlDBType.NVarchar).Value = sqlStatement(splitItems(1)) cmd.Parameters.AddWithValue("@ProdSize", SqlDBType.NVarchar).Value = sqlStatement(splitItems(2))
my textbox and gridview is in a updatepanel (ajax) .
i want to update gridview when textbox length equal some number
for exmple (textbox.length==3)
how can i know text box length when user is typing ?(before leave textbox) ------------- more :: whit javascript we can know textbox length but how can update gridview in javascript (I thing we should use gridview1.databind())
I have a few applications/websites running with LINQ to SQL and the other day I decided to go ahead and optimize some of the queries, etc and I found that the size for variable length data types is derived from the parameter value instead of the column actual size? for example a column is defined as nvarchar(30). when I use linq to query that column with a value that's 5 characters long the parameter in sp_executesql will be defined as nvarchar(5)...this causes a major procedure cache bloat even for a small utility site that has a lot of queries is there a way to optimize this?
I have an excel file in my Response Output stream. I can Open the stream as a file after a prompt, but it doesn't seem I can save it directly to a specified folder on my client.
This is all in the Code Behind under the Page Load function.
Basically, I'm trying to convert an ASP page into ASP.NET. I've worked with ASP and PHP a lot more than I have with ASP.NET and I'm just having trouble with the syntax.