No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
dear george61 the way you mention above about solve this problem by javascript not recommended becuae javascript can be disabled dear . the last way by using autocomplete="off" very nice thanks
hi stanley87 there is way in php to get the primary key of the insert/update done look example mysql_query("insert into table1 values ........."); $myquery = "SELECT LAST_INSERT_ID() as new_id"; $myres = mysql_query($myquery); $myrow = mysql_fetch_array($myres); //// now $myrow[0] contain the primary key of the last insert done //// now you …
hi subhankar02dey , download [URL=http://hotfile.com/dl/67535648/2c4215c/WebSite6.rar.html]http://hotfile.com/dl/67535648/2c4215c/WebSite6.rar.html[/URL] prepare using visual studio 2010 Solving exactly what u want thanks
how to solve security warning programatically when open web site i develop I mean what is the reason that cause security warning thanks
Sure you can 1- include this file [CODE]<script type="text/javascript" src="shadedborder.js"></script>[/CODE] 2- write your Css as follow [CODE]<style type="text/css"> /* <![CDATA[ */ /* One simple border definition */ #my-border { padding:20px; width:30%; margin:200px auto; color:#fff; } #my-border, #my-border .sb-inner { background:#444 url(grad.png) repeat-x; } /* The following is just for making …
In the login page in case of successful login write the following code Session["userid"] = t1.Text; Now you have session variable in all your website pages called userid In the second page write code like this String userid = Session["userid"].ToString(); sqlDataAdapter d=new sqlDataAdapter("select studentname from students where userid="+userid,connstring); Label1.text=....... studentname …
Sure The first way >>>> Look There is Rule in DBMS (data bas management system) as follow : - The fields like number of students , numbe of message , age and so on recommended to calculated , not to considered as fields in table thanks
Good solution digital-ether >>>>> This is the way to show confirmation message before delete ..... I use this in web development .
The End.