User Profile

Collapse

Profile Sidebar

Collapse
hini
hini
Last Activity: Dec 25 '10, 12:35 PM
Joined: Mar 9 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hini
    replied to GridView edit problem
    thanks for your feedback but that's not exactly what I was looking for.
    I have a working copy I just want to know how to fix this one
    instead of making backups u may want to try Subversion as I do.

    BR
    See more | Go to post

    Leave a comment:


  • hini
    started a topic GridView edit problem

    GridView edit problem

    I created a gridview and bound it to a datasource, I had some problems that do not relate to this post.
    then I created another datasource programmaticall y and deleted the old one,
    and I bound it using gridview.DataSo urce = source.

    now when I click the edit button the first time nothing happens, when I click edit on another row, the previous row I clicked on changes to editing mode and shows update cancel links, then when...
    See more | Go to post

  • check this one, it should give you a clear idea...
    See more | Go to post

    Leave a comment:


  • hini
    started a topic Developing java multiplayer card game
    in Java

    Developing java multiplayer card game

    Hi all,
    I am considering creating a multiplayer card game to play with my friends over internet, and I want to do it in java,
    I am not pro in java so I read a little about sockets, serialization, RMI, servlets, EJB etc.. but I am still not sure what are the best technologies or architecture to use for communication between players and server.
    of course it will be client server architecture with an applet on the client for example...
    See more | Go to post

  • hini
    replied to C# and Regular expressions
    in .NET
    thanks a lot !
    I tried to use the multiline option because I thought it was the correct one,
    never thought it is exactly the opposite :)
    See more | Go to post

    Leave a comment:


  • hini
    replied to Running application after installation
    in .NET
    I am not sure if the value can be accessed directly from the classes of the solution, especially that it depends on the deployment application

    you may try to search the installation directory by reading the windows registry using a code similar to this one :

    RegistryKey bk = Registry.LocalM achine;
    RegistryKey rk;
    string subkey = @"System\Curren tControlSet\Ser vices\yourservi cename";
    rk =...
    See more | Go to post

    Leave a comment:


  • hini
    started a topic C# and Regular expressions
    in .NET

    C# and Regular expressions

    Hi all,

    I have a problem with matching a regular expression.
    the string is multiline, when I replace the newline characters with spaces all goes fine.
    is there another way to do it without replacing anything ?

    let's say the string is:
    item1=102
    item2=345
    ...
    lastval=1234556


    what I want to do is to read the values of item2 and lastval and store them in a...
    See more | Go to post

  • so how can we do it in IE ?
    See more | Go to post

    Leave a comment:


  • hini
    started a topic make minimized window blink (like in msn)

    make minimized window blink (like in msn)

    Is there a javascript function that makes a minimized window blink ? ( ie change it's color like msn messenger when u receive a new message from somebody)
    See more | Go to post

  • this is a simple code that you can test, name the file "thepage.as p"

    Code:
    <%
    text1 = request("mySelect")
    if text1 <> "" then response.write("you selected " & text1)
    %>
    
    <form method="post" action="thepage.asp">
    <select name="mySelect">
    <option>first</option>
    ...
    See more | Go to post

    Leave a comment:


  • hini
    replied to How to get an element in ASP
    if you do not want to pass any value to the server you can do it from javascript by encapsulating the select in a DIV tag. check this example:

    Code:
    <html>
    <head>
    <script>
    function toggleSelect()
    {
    	if (document.getElementById("divSelect").style.display != '')
    	{
    		document.getElementById("divSelect").style.display = '';
    		document.getElementById("btnToggleInt").value
    ...
    See more | Go to post

    Leave a comment:


  • hini
    started a topic Creating SQL Server 2000 job in ASP

    Creating SQL Server 2000 job in ASP

    does anybody know how to create an sql server job using ASP ?
    thanks in advance.
    See more | Go to post

  • hini
    replied to Frames refresh
    the best way to deal with it is to use a session variable,
    you can initiate it in global.asax.
    Code:
    session("mode") = "notloggedin" ;
    and place a code on the top of login.aspx, something like

    Code:
    if (session("mode")="loggedin")
    response.redirect ....
    and in login.aspx, if the user and pass are correct, u must add a line like...
    See more | Go to post

    Leave a comment:


  • hini
    replied to Reusing a variable in .ASP
    remove the "if if",
    remove the first portion ,

    replace the second one with:
    Code:
    <%
    if variable = "Engraving" Then
    %>
    <!--#include file = "sci.asp"-->
    <%
    
    Else 
    	if variable = "About Awareness" then
    %>
    	<!--#include file = "aar.asp"-->
    <%
    	End If
    end if
    ...
    See more | Go to post

    Leave a comment:


  • hini
    replied to Why is IIS needed?What does it do?
    ASP is a server side language, that means the ASP code is executed on the server, the server can be a dedicated machine , or simply your pc.
    in order to execute a server side script, you need a WEB SERVER.
    well, that's where IIS is used.
    when u request an asp page, the web server
    (which may be your pc as I said, if you installed IIS on it)
    reads the script, executes it, and sends u the output.
    the output...
    See more | Go to post

    Leave a comment:


  • hini
    replied to pls help ! why this error?
    What is the error displayed?
    check the following line:

    rs4.open "select from intermediar where id_utilizator=" & id_utilizator & "and id_curs=" & id_curs & "'"

    you may need to change it to " select * from...."
    See more | Go to post

    Leave a comment:


  • hini
    replied to Problem inserting data to database
    this line is outside the script :

    MyStatement = "Insert into Book_files Set Values
    Title='"&Title& "',Author='"&Au thor&"', ISBN='"&ISBN&"' ,Publisher='"&P ublisher&"',Pla ce_of_Publicati on='"
    &PlaceofPublica tion&"',Year='" &Year&"',Collat ion='"&Collatio n&"',Shelf_Numb er='"&ShelfNumb er&"'"...
    See more | Go to post

    Leave a comment:


  • hini
    replied to Javascript mouse location
    the solution worked,
    thx a lot mrhoo .
    See more | Go to post

    Leave a comment:


  • hini
    replied to Window Close
    I faced the problem before but could not resolve it,
    I searched for a javascript function to send a request to server page when the window is closed, and I tried onUnload.
    the problem with onUnload is that it is executed even if I try to refresh the page.
    See more | Go to post

    Leave a comment:


  • hini
    started a topic What does mean N' ??

    What does mean N' ??

    Hello,

    I see the N' in many asp , sql scripts at the beginning of a string usually and I don't know what's its meaning,
    I could not find anything about it when seraching google because of the obvious reason that I am searching for a N :D.

    thx in advance
    See more | Go to post
No activity results to display
Show More
Working...