Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

shabya

@shabya
About
Posts
56
Topics
25
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • using webcam with silverlight 4 - protection error
    S shabya

    you mean Nero the disc burner? i got it , its not running thow. what do you think i should do ? shall i 'burn' it?

    WPF visual-studio help csharp debugging question

  • using webcam with silverlight 4 - protection error
    S shabya

    hi, 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

    WPF visual-studio help csharp debugging question

  • using Web services in a none standard way
    S shabya

    now 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 ?

    ASP.NET wcf beta-testing tutorial question code-review

  • using Web services in a none standard way
    S shabya

    hello, 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

    ASP.NET wcf beta-testing tutorial question code-review

  • "Will Code for Green" Contest for Devs
    S shabya

    hello 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

    The Lounge sharepoint com collaboration help tutorial

  • 'Page Init' approached twice in the master page
    S shabya

    mm.. 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?

    ASP.NET question

  • 'Page Init' approached twice in the master page
    S shabya

    mm.. 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?

    ASP.NET question

  • 'Page Init' approached twice in the master page
    S shabya

    hello, 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

    ASP.NET question

  • hidden field name contains a .NET string addon. how do i change it ? [modified]
    S shabya

    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 ?

    ASP.NET question csharp html database

  • hidden field name contains a .NET string addon. how do i change it ? [modified]
    S shabya

    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

    ASP.NET question csharp html database

  • using WebBrawser to open a URL from a c# application
    S shabya

    tnx , but i cant ask my customers to do that , they are usually art and nature like activists...

    C# csharp performance tutorial question

  • posting data to remote URL using WebBrowser
    S shabya

    hello, 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

    &lt;form name="aspnetForm" method="post" action="default.aspx?key=5555" id="aspnetForm"&gt;

    &lt;input name="ctl00$pass" type="text" id="ctl00_pass" /&gt;

    </form>
    .

    tnx

    C# question csharp

  • remote posting to a webpage [modified]
    S shabya

    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

    ASP.NET question csharp

  • using WebBrawser to open a URL from a c# application
    S shabya

    about 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

    C# csharp performance tutorial question

  • using WebBrawser to open a URL from a c# application
    S shabya

    hello, 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

    C# csharp performance tutorial question

  • inserting Hyperlink inside windows form
    S shabya

    yes , 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..

    C# html question

  • inserting Hyperlink inside windows form
    S shabya

    nope, it still overruns existing pages...

    C# html question

  • inserting Hyperlink inside windows form
    S shabya

    nope.. 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..

    C# html question

  • inserting Hyperlink inside windows form
    S shabya

    Hello, 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

    C# html question

  • crash test on my website resolved exception
    S shabya

    yeh... well how can i trap this event ? i want to 'handle' this unhandled exception..

    ASP.NET sysadmin data-structures security testing debugging
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups