I had the same thing - i got a BSOD&Reboot loop.
The error had soemthing to do with a core area of the registry being missing if i remember correctly.
My only recourse was to reinstall - I lost all email over 10 days old, which was my most important info on the drive.
A great bunch of responses - I will start looking into things tomorrow.
The page will have to change the layout once in a while to prevent screen burn (the old presentation was running for 1 year solid before i started, and has left some nasty burn).
My main problem is making sure the screen...
We run a plasma screen in the office here, that shows a variety of information for the internal staff.
currently we run a powerpoint presentation, which being run 24/7 has a habit of freezing requiring me to close the presentation and running at again once a day.
We are thinking of replaceing...
ok, I dont know what i have done to cause this - but somehow I managed to 'unlink' my events from my objects.
say I have a button which executes Button_Click event, the code is still there, but I had to go bac to the button in VS.NET and select that method for the event from the designer again...
Ok, I have a datalist with a bunch of databound linkbuttons. I want the linkbutton for the selected item in the list to be bols when clicked on.
My problem is that although this DOES work, it seems to be a page refresh behind.
EG:
The page will load, and the list displays fine.
I click on the...
Ok... I have tried to move over to using a datalist, as that has the functionality i am looking for, I have modified my code slightly as well.
---
My Error:
DataBinder.Eval: 'FH.oMyObj' does not contain a property with the name ID.
---
My Code:
<asp:DataList ID="MyDataList"...
Ok, I have an Arraylist of custom objects, and I want to display these in a dataGrid. I keep getting an error when running the code I have developed.
---
A field or property with the name 'ID' was not found on the selected datasource.
---
My code:
if (myList.Count > 0) {
lblDebug.Text =...
Thats great thanks.
Will the session variables remain in memory after the user has left the page until the timeout period is reached - I may have to set the timeout to something high, as I expect users will spend a lot of time on a single page (>20 mins)
I am trying to build a custom login form, and I have managed to get it working so far.
When the user logs in, the databse is queried, and the relevant data is pulled out and inserted into two custom objects I created. The first contains all the user data,and the second contains other site wide...
Additionally, I have seen referances to the code:
App.Application.Quit(ref missing, ref missing, ref missing);
compiling this code gives me:
The name 'missing' does not exist in the class or namespace 'MyProject.WebForm1'
Help?
I am trying to write an ASP.NET page that takes the values submit from one form, inserts them into a Word .DOT template, and then emails the template to an email address.
My first problem is I cant seem to get the webserver to load word:
---
Line 20: private void Page_Load(object sender...
I have a dropdown list that lists all the records in a table. I can bind the datasource so that it puls out the right data and displays the list items correctly.
What I am trying to do is set it so that the selected value is set to the value in the currently selected record. I can only see...
So I can update teh data with the dataview? I have been trying through the dataset.
I got it working in the end:
String catVal = lstCategories.SelectedItem.Value.ToString ();
DataRow drUpdateRow = dsCats1.Tables["tblCats"].Rows.Find (catVal);
drUpdateRow.BeginEdit ()...
I have a page where a user can upload a document, which will then become avaliable on another page as a download.
What I want to do is to convert that document (ie. MS-Word) into HTML, so the user can click on a link to view it online.
I know that not all document types can be converted (like...
What would I do if I dont know which row of the data source I am updating?
I have a DataView filtered down to one particular record, which could be any record in the set, I only now the ID number not the row number.
I am assuming that to update I would do soemthing like:
oleDbDataAdapter1.Update (dsCats1);
This does not seem to work at present. Do I need to update the dataSource manually?
Also Adapter1 takes data from one table, if I wanted to update the other table would Ihave to call the Update command...
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.