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
User Profile
Collapse
-
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... -
-
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... -
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 :)Leave a comment:
-
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 =...Leave a comment:
-
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... -
-
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) -
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>Leave a comment:
-
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").valueLeave a comment:
-
Creating SQL Server 2000 job in ASP
does anybody know how to create an sql server job using ASP ?
thanks in advance. -
the best way to deal with it is to use a session variable,
you can initiate it in global.asax.
and place a code on the top of login.aspx, something likeCode:session("mode") = "notloggedin" ;
and in login.aspx, if the user and pass are correct, u must add a line like...Code:if (session("mode")="loggedin") response.redirect ....Leave a comment:
-
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
Leave a comment:
-
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...Leave a comment:
-
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...."Leave a comment:
-
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&"'"...Leave a comment:
-
-
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.Leave a comment:
-
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
No activity results to display
Show More
Leave a comment: