Hi,
I will need to implement a website-search system of some complexity very soon, and I'm researching what my options are.
Ofcourse, that means either develop it myself, or buy a third party solution. Unless it's easy to do (which I doubt, considering the scale of the website in question), I...
Hi,
I'm populating an asp:DropDownList from a DataSet, and I get a very weird result.
I have this number (0099471468240) that gets shown like this: ' 009... ', within the dropdown. Although in code, it clearly is what it should be: 0099471468240.
Now the weird thing is that it works...
Hi,
We (the development team) get a re-occuring occassional error:
Error : System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.OleDb.OleDbException: Could not find stored procedure 'sp_***'. (pageinfo ...) --- End of inner exception stack trace...
Hi,
Which controls within ASP.net can contain, and display, a Bitmap object, other than the Response.Outputstream (ie, the page itself)?
I'm doing some GDI+ drawing on a Bitmap object, which I like to pass to a valid receiver.
It would make sense to me that for instance an asp:image can...
Hi,
Am I correct saying that with ASP.Net, a static class, is basically a single server object, that is active across sessions?
Meaning that if I set a value of a static class, all sessions will read the same value. But that means that if one user's session sets this value again with something...
Hi,
I have a Web service with basic authentication active on IIS, to which I pass a NetworkCredential object:
NetworkCredential objCredential = new NetworkCredential("UID", "PWD");
myWebserviceObject.Credentials = objCredential;
On my local test solution, everything works fine.
Yet, on...
Hi,
I'm using ReadXml() in combination with a XmlDataDocument and have an incoming XML tag like this:
<phonenumber type="1">somephonenumber</phonenumber>
So, I have this:
XmlDataDocument xmlDoc = new XmlDataDocument();
int i = 0;
foreach (DataRow row in doc.DataSet.Tables[0].Rows)
{
...
}...
Hi,
I got this error on a WebRequest.GetResponse(): "The request was aborted: The request was canceled"
Any idea what this can be? It's on an application that used to work ...
Hi,
I'm wondering what the actual manageable maximum amount of rows per table is in SQL Server 2005.
If I can believe this link: http://technet.microsoft.com/en-us/library/ms143432.aspx, the theoretical maximum is limited only by 'diskspace'.
But I imagine that the effective maximum is...
Hi,
I will need to process a .csv file, and use the data to update certain columns of existing records (of one table).
I expect the csv to have about 350K+ lines, so updating line per line, sending single update statements, would take ages.
Any ideas?
Hi,
I have an ASP.Net website on my local drive, which I published using the publish functionality (VS 2005).
I use Server.MapPath throughout my entire solution, yet it seems to have written the local path into the bin dlls. It definitely hasn't changed anything according to the new path...
Hi,
I'm looking into different ways to export data to an Excel sheet. Speed and editability are the main priorities.
Anyone have any links/tips/suggestions, so I can look into it and decide which is best for me?
Thanks
PS: Not asking for code at this point, just ways to do it.
Hi,
Suppose I have a string like: (A)((B)(C))
I need a pattern that looks for strings within ( and ), so that should return:
(A)
((B) (C))
(B)
(C)
This is the code I have now, but I have no idea about what pattern can do that:
Dim oRegExp As New...
Hi
If I want to write a program that allows communication with myself and someone who has the exact same program, but is somewhere else (not on the same network), what is the best way to do this?
Is a client/server socket set-up enough?
And, how can I reach the local IP (of the PC of the...
Hi all,
I'm using this to write a string to file:
Dim myFileStream As New FileStream(sFilename, FileMode.Open)
Dim swStreamWriter As New StreamWriter(myFileStream)
swStreamWriter.Write(script)
swStreamWriter.Close()
myFileStream.Close
This works fine, except that it adds " to...
Hello,
Within a RichTextBox I wish to be able to search for certain keywords and when the keyword is found, jump to it so that the RichtTextBox displays the according line on which the keyword I'm searching for was found.
(No need to highlight the keyword itself)
Any clue on how I do this?
Thanks
When I run my DirectX (8.0) programs for the second time, it crashes over DDHelp (guess that's DirectDraw)
'New' commercial games like Morrowind also crash occasionally.
The same programs run fine on the computer of a friend of mine.
So, I guess this means the memory of my PC is too...
Hi all,
1. How do I retrieve the full path of the directory your application is running on? I am using GetApplicationPath but it makes the directory names shorter using ~ (8 character notation) and that seems to give errors. What I want is the full, actual path.
2. Is it possible to stop the...
Hi all,
A basic program my friend has written and has never crashed on his PC, makes my own crash at the second time I open it. This usually makes me think it is something that doesn't get released properly, but it has never crashed on his pc, like I said. And we have reasonably comparable...
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.