Search

You searched for the word(s): userid:134377

Matching Posts

  • adding function to table in runtime

    Hello, I use html to create table and I want to add this table a javascript function in onload event. the javascript function should be in one of the cells, and it used to show movie. the problem is that i can't find the way to add function in run time. i tried this- var showgame showgame = new Function(CreateActiveXFlash ('www.shoresh.org.il/spages/games/flashfiles/" + arr[2] + "', 'width: 750px; height: 600px;', '');); document.getElementById("gamebody"
    Posted to Client Side Web Development (Forum) by yanivhanya on 11/4/2009
  • Re: adding function to table in runtime

    well, the problem is that i want to attach the script to the load event- e.g. i want the table to show up with the movie and not in click event. the simple way was to put script tag in the cell itself, but it is not working, it earese the table and show only the script.
    Posted to Client Side Web Development (Forum) by yanivhanya on 11/4/2009
  • distinct and top together

    i guess it asked before, but i couldn't find... i need to select three last articles from my table (tbl_articles) in distinct type. any article has a "type" column and "belongsto" column, i need the top different "type"s where belongsto = "articles", i use the select query- "select top 3 distinct type, belongsto, ID, subject, spot, username, image from tbl_articles where belongstoi='articles' " the problem is that i get the same type twice
  • Re: distinct and top together

    sample data- id type subject belongsto 5 sport how to run articles 4 health don't eat articles 3 sport how to play articles 2 fun sing! articles 1 life MY LIFE articles what i want to get is- 5,4,2 (because 3 is the same type "sport" as 5) what i get is 5,4,3
  • showing swf file in HTML page

    I"m using aspx page to write HTML page (actualy the htm file- dim s as string s = "<html>" s = s & "<body>" and so on, in this page I want to show flash movie, and i use the regular "showactiveX" scripts that running in the web. I use the same scripts in endless aspx pages to show swf movies (in the code i call a javascript function that call the document.write function that show the movie). however, in the HTML page it dosen't work. I can see
    Posted to Web Forms (Forum) by yanivhanya on 2/17/2009
  • Re: table rows dosent show good in firefox

    I was only a sample i typed, in the real file there is not spaces. you can see it here- http://www.shoresh.org.il/main.htm
    Posted to Getting Started (Forum) by yanivhanya on 2/12/2009
  • table rows dosent show good in firefox

    I have some strange problem with firefox (chrome and so). i use the aspx page to write html to file and then show it in the browser. I write tables tags- s = s & "<table>" s = s & "<tr id=firsttr>" s = s & "<td id= firsttd>" s = s & "text" s = s & "</td>" s = s & "</tr>" the problem is that firefox adds "</tr>" after the word "text", so in the page it looks like
    Posted to Getting Started (Forum) by yanivhanya on 2/12/2009
  • Re: calling a web page from javascript

    since my application based on AJAX, i need to call it from the javascript and not from the server side. I mean- after the user do some thing, i need to update security settings, and for that i need to call a page, just call it...
  • calling a web page from javascript

    I"m building some Mail application that comunicating with linux web mail. In one of the proceses I need to call PHP page, for fixing security parameters (the page call "in server" script that fix the security parameters). I just need to call the page, not to move the browser to it. can i do it from javascript? in server side language it will look like- Dim strURL As String = "http://62.128.52.130/fixperms2.php?user=" & Trim(username) Dim aRequestedHTML() As Byte aRequestedHTML
  • Re: create hebrew character using StreamWriter

    Well in my side it's different, i write the HTML code itself... that mean- Dim FILE_NAME As String = "C:\Inetpub\wwwroot\newshoresh\main.htm" Dim Fs As FileStream = New FileStream(FILE_NAME _ , FileMode.Create, FileAccess.Write, FileShare.None) Dim SwFromFile As StreamWriter = New StreamWriter(Fs, System.Text.Encoding.UTF8) SwFromFile.Write(createheaderstext) and then i write html tags and so on. the problem was encoding... you can see in the the second parameter in the streamwriter
    Posted to Localization (Forum) by yanivhanya on 2/1/2009
Page 1 of 30 (291 items) 1 2 3 4 5 Next > ... Last »