you mean Nero the disc burner? i got it , its not running thow. what do you think i should do ? shall i 'burn' it?
shabya
Posts
-
using webcam with silverlight 4 - protection error -
using webcam with silverlight 4 - protection errorhi, i am using visual studio 10 professional for my silverlight project first of all - i mannaged to show my webcam output on a rectangle located on the webpage. (yeepee for me :) the problem is - when i run the app with my visual studio debugger and its time for the webcam to ask for access appoval i get a window saying: "protection error Dubgger detected - please close it down and restart!" i assume there is some protection on my machine that protects it from running my webcam stream from a running debugger (vs 10 in this matter) is there a way to go around it ? i hate to be able to run my code only at the website. tnx in advance
-
using Web services in a none standard waynow lets say what if a web service has to 'think' about the answer to my query for more than a minute , will i have to 'stay put' and wait for the answer ? cant i get a notice that the answer is ready for me to pick it up without 'nagging' it every once and awhile ?
-
using Web services in a none standard wayhello, i allready know i can use web service by either calling a function with no postback and with postback , for example : 'void helloworld' for a no postback and 'int maxnum' with a feedback. is there a way to use the webservice as an event triggered? for example if i want to get an event triggered in my application from a webservice every time a new user logs into my website can i do it using web service ? tnx in advance avi
-
"Will Code for Green" Contest for Devshello there, here , you said to go and write a green code ? i did it... i even added some Bing Spelling technology into it have a look - http://www.printingmonitor.com
-
'Page Init' approached twice in the master pagemm.. interesting. i put a trap for all the events and all of them loaded only once. (pageload, pageinit) the twice load happened only when there was an exception. the exception was called twice. is there a retry or something?
-
'Page Init' approached twice in the master pagemm.. interesting. i put a trap for all the events and all of them loaded only once. (pageload, pageinit) the twice load happened only when there was an exception. the exception was called twice. is there a retry or something?
-
'Page Init' approached twice in the master pagehello, i have a strange phenomenon which happens only at the remote site. it doesnt happen in my local machine. i noticed that the PageInit is called twice in the master page. i know that because i trapped there an Exception that writes to a file the information of the Exception. the file was written twice with the delay of approx 300 msec between them. (i use a tick counter to construct the file name) in the local machine the file is written only once. does anyone have an idea why this happens ? tnx, avi
-
hidden field name contains a .NET string addon. how do i change it ? [modified]yes , but i need to add dynamic values to those fields which are read from a database. if i use simple html tags i cant change their values easily can i ?
-
hidden field name contains a .NET string addon. how do i change it ? [modified]hello, when i put a hidden field in a form and run it i look at the page source and see the following :
<input type="hidden" name="ctl00$ContentPlaceHolder1$UserName" id="ctl00_ContentPlaceHolder1_UserName" value="sasa" />
<input type="hidden" name="ctl00$ContentPlaceHolder1$PassWord" id="ctl00_ContentPlaceHolder1_PassWord" value="tttyyy" />.
i want the names to be UserName and PassWord and not with the 'ctl00$ContentPlaceHolder1$' before them how do i change it ? those fields will not be posted back to the page but will go to another url which is not related to my project. i added the 'postbackurl=' to the button click btw , i dont use simple html hidden tags because their values are set from a database tnx, avi
modified on Saturday, May 16, 2009 4:18 AM
-
using WebBrawser to open a URL from a c# applicationtnx , but i cant ask my customers to do that , they are usually art and nature like activists...
-
posting data to remote URL using WebBrowserhello, i am using the WebBrowser Navigate to navigate to a webpage from my c# application. i try to post data to a form which is in that page. (its my page , i control it) first , what is the name of the field i need to put in the post string? is it ID or NAME ? second , i tried various methods but none filled the form textbox with the information i sent. what am i doing wrong? here's the c# code
WebBrowser Web = new WebBrowser();
string postdata = "ctl00_pass=1234";
System.Text.Encoding a = System.Text.Encoding.UTF8;
byte[] SendBytes = a.GetBytes(postdata);Web.Navigate(WebBase + WebAddress, WebTitle, SendBytes, "Content-Type: application/x-www-form-urlencoded");
.and here's the website
<form name="aspnetForm" method="post" action="default.aspx?key=5555" id="aspnetForm">
<input name="ctl00$pass" type="text" id="ctl00_pass" />
</form>
.tnx
-
remote posting to a webpage [modified]hello, i am using the WebNavigate to navigate to a webpage from my c# application. i try to post data to a form which is in that page. (its my page , i control it) first , what is the name of the field i need to put in the post string? is it ID or NAME ? second , i tried various methods but none filled the form textbox with the information i sent. what am i doing wrong? here's the c# code
WebBrowser Web = new WebBrowser();
string postdata = "ctl00_pass=1234";
System.Text.Encoding a = System.Text.Encoding.UTF8;
byte[] SendBytes = a.GetBytes(postdata);Web.Navigate(WebBase + WebAddress, WebTitle, SendBytes, "Content-Type: application/x-www-form-urlencoded");
.and here's the website
<form name="aspnetForm" method="post" action="default.aspx?key=5555" id="aspnetForm">
<input name="ctl00$pass" type="text" id="ctl00_pass" />
.
tnx
modified on Friday, May 15, 2009 2:04 AM
-
using WebBrawser to open a URL from a c# applicationabout the browser being opened - what if explorer is removed ? (if it is possible i dont know) i went to the WebBrowser thing because i couldn't open the desired URL in a new window. what happened was it ran over an existing page... the code that i used:
System.Diagnostics.Process.Start("http://www...");
. using iexplore /new and stuff doesnt work here tnx
-
using WebBrawser to open a URL from a c# applicationhello, i am using the following code:
WebBrowser Web = new WebBrowser();
Web.Navigate("http://...", "_blank");. does anyone know if it is memory consuming? and if i dont have internet explorer as a default browser will it work? for example with firefox. tnx , avi
-
inserting Hyperlink inside windows formyes , i did it but my problem is the new link overruns existing pages. like here i am in this page writing a comment, if i click the link it will be instead of this page and not open a new one. i want to use the target="..." thing..
-
inserting Hyperlink inside windows formnope, it still overruns existing pages...
-
inserting Hyperlink inside windows formnope.. its still running over existing pages.. looks like the 'new' code is valid only if i specify : iexplore.exe www.xyz.com -new but i dont know which browser my client has..
-
inserting Hyperlink inside windows formHello, i want to add a hyperlink of a webpage to my form is there a way to do it? i am using the System.Diagnostics.Process.Start... with a file with 'html' extention but this lacks the posibility to open a browser's window in a new page. it runs over existing pages. tnx, avi
-
crash test on my website resolved exceptionyeh... well how can i trap this event ? i want to 'handle' this unhandled exception..