Click here to Skip to main content
15,886,024 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: javascript function work with on project and another one nooooo !!! Pin
Christian Graus27-Apr-08 12:09
protectorChristian Graus27-Apr-08 12:09 
GeneralRe: javascript function work with on project and another one nooooo !!! Pin
AlexeiXX327-Apr-08 18:57
AlexeiXX327-Apr-08 18:57 
GeneralRe: javascript function work with on project and another one nooooo !!! Pin
kindman_nb27-Apr-08 22:08
kindman_nb27-Apr-08 22:08 
GeneralRe: javascript function work with on project and another one nooooo !!! Pin
kindman_nb27-Apr-08 22:26
kindman_nb27-Apr-08 22:26 
GeneralRe: javascript function work with on project and another one nooooo !!! Pin
AlexeiXX328-Apr-08 5:11
AlexeiXX328-Apr-08 5:11 
GeneralPersistent client side changes Pin
derm227-Apr-08 6:24
derm227-Apr-08 6:24 
GeneralRe: Persistent client side changes Pin
Christian Graus27-Apr-08 11:33
protectorChristian Graus27-Apr-08 11:33 
GeneralRe: Persistent client side changes Pin
derm228-Apr-08 22:18
derm228-Apr-08 22:18 
Viewstate only seems to remember specific changes. Look at the following code, for example.

if (!Page.IsPostBack)<br />
{<br />
    string str = "<script type='text/javascript'>";<br />
    str += "document.getElementById('CheckBox3').style.visibility='hidden';";<br />
    str += "document.getElementById('CheckBox2').checked=true;";     <br />
    str += "</script>";       <br />
    Response.Write(str);<br />
}


It will add javascript to check checkbox2, and hide checkbox3 on the clicent side if it's not a postback. Now do a postback. Checkbox2 will stay checked, but checkbox3 will turn visible after a postback. Viewstate is enabled for both checkboxes.
GeneralRe: Persistent client side changes Pin
Christian Graus28-Apr-08 23:55
protectorChristian Graus28-Apr-08 23:55 
GeneralRe: Persistent client side changes Pin
derm229-Apr-08 2:18
derm229-Apr-08 2:18 
GeneralRe: Persistent client side changes Pin
Christian Graus29-Apr-08 2:26
protectorChristian Graus29-Apr-08 2:26 
GeneralRe: Persistent client side changes Pin
derm229-Apr-08 6:43
derm229-Apr-08 6:43 
Questioncleaing memory on client side -javascript Pin
michael@cohen27-Apr-08 6:22
michael@cohen27-Apr-08 6:22 
GeneralRe: cleaing memory on client side -javascript Pin
Christian Graus27-Apr-08 11:32
protectorChristian Graus27-Apr-08 11:32 
GeneralTimed Exams Pin
Mohammad A Gdeisat27-Apr-08 3:09
Mohammad A Gdeisat27-Apr-08 3:09 
GeneralRe: Timed Exams Pin
Krazy Programmer27-Apr-08 7:42
Krazy Programmer27-Apr-08 7:42 
GeneralRe: Timed Exams Pin
Mohammad A Gdeisat27-Apr-08 10:40
Mohammad A Gdeisat27-Apr-08 10:40 
GeneralRe: Timed Exams Pin
Christian Graus27-Apr-08 11:36
protectorChristian Graus27-Apr-08 11:36 
GeneralProblem dynamically painting a control in a SharePoint WebPart Pin
JimmyRopes26-Apr-08 13:13
professionalJimmyRopes26-Apr-08 13:13 
QuestionError 7 Pin
razi_Seyyedi26-Apr-08 11:53
razi_Seyyedi26-Apr-08 11:53 
GeneralRe: Error 7 Pin
Christian Graus26-Apr-08 13:44
protectorChristian Graus26-Apr-08 13:44 
GeneralRe: Error 7 Pin
Guffa26-Apr-08 14:33
Guffa26-Apr-08 14:33 
QuestionDynamic Internationalization Pin
harshGupta26-Apr-08 10:03
harshGupta26-Apr-08 10:03 
GeneralRe: Dynamic Internationalization Pin
Christian Graus26-Apr-08 11:16
protectorChristian Graus26-Apr-08 11:16 
QuestionUsing javascript functions ? Pin
kindman_nb26-Apr-08 9:46
kindman_nb26-Apr-08 9:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.