<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8041062627673074333</id><updated>2011-04-21T13:48:31.816-07:00</updated><title type='text'>Message Box Problem in vb2005</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://messageboxproblem.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8041062627673074333/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://messageboxproblem.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8041062627673074333.post-6371636703328708892</id><published>2009-02-04T02:29:00.001-08:00</published><updated>2009-02-04T02:34:47.031-08:00</updated><title type='text'></title><content type='html'>MessageBox Problem vb 2005&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Client side script is a code that executes on the client side in other words it executes in the browser not on the server, which allows you to do somethings without having to submit the page to the server. &lt;br /&gt;here's an example of how you can ask the user to confirm the click before executing the button click code, this example uses javascript. &lt;br /&gt;&lt;br /&gt;Code: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    &lt;script language="javascript" type="text/javascript"&gt; &lt;br /&gt;function requestConfirmation() &lt;br /&gt;{ &lt;br /&gt;    if(window.confirm("Do you want to save before leaving")) &lt;br /&gt;    { &lt;br /&gt;        return true; &lt;br /&gt;    } &lt;br /&gt;    else &lt;br /&gt;    { &lt;br /&gt;        return false; &lt;br /&gt;    } &lt;br /&gt;} &lt;br /&gt;    &lt;/script&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   // &lt;form runat="server" id="Form1"&gt; &lt;br /&gt;     //   &lt;asp:Button ID="Button1" runat="server" Text="Return" OnClientClick="return requestConfirmation()" /&gt; &lt;br /&gt;    //&lt;/form&gt; &lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Here's another example for VBScipt solution, notice the empty script tag is due to a glitch in IE an &lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;br /&gt;    &lt;script type="text/javascript" language="javascript"&gt; &lt;br /&gt;&lt;br /&gt;    &lt;/script&gt; &lt;br /&gt;&lt;br /&gt;    &lt;script language="vbscript" type="text/vbscript"&gt; &lt;br /&gt;     Function requestConfirmation() &lt;br /&gt;        Dim res &lt;br /&gt;        res=MsgBox("Are you sure you want...",vbYesNoCancel) &lt;br /&gt;        If res=vbYes Then 'If yes submit &lt;br /&gt;             window.event.returnValue = true &lt;br /&gt;        Elseif res=vbNo Then 'dont submit &lt;br /&gt;         'Do something else before &lt;br /&gt;         window.event.returnValue = false &lt;br /&gt;        Else &lt;br /&gt;            window.event.returnValue = false &lt;br /&gt;        End If &lt;br /&gt;    End Function &lt;br /&gt;    &lt;/script&gt; &lt;br /&gt;&lt;br /&gt;    form runat="server" id="Form1"&gt; &lt;br /&gt;        asp:Button ID="Button1" runat="server" Text="Return" OnClientClick="requestConfirmation() /&gt; &lt;br /&gt; &lt;br /&gt;If you need more assistance feel free ask. &lt;br /&gt;&lt;br /&gt;And welcome to vbCity &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;source :http://www.vbcity.com&lt;br /&gt;&lt;br /&gt;-------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gambarbergerak-riaq.blogspot.com"&gt;Trik Gambar Bergerak&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://gambar-dimouse.blogspot.com"&gt;Trik Gambar-dimouse&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://hapuspwdmysql.blogspot.com"&gt;Trik hapus pwd mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://insertintodb.blogspot.com"&gt;Trik insertin to db&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jadirootdilinux.blogspot.com"&gt;Trik jadi root dilinux&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jam-distatus-bar.blogspot.com"&gt;Trik jam-distatus-bar&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-kedatabase.blogspot.com"&gt;Trik Koneksi-ke database&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-msql-php.blogspot.com"&gt;Trik Koneksi-msql-php&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://lihat-database-mysql.blogspot.com"&gt;Trik lihat-database-mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://membahas-fungsi-else.blogspot.com"&gt;Trik membahas-fungsi-else&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://member-area-riaq.blogspot.com"&gt;Trik member-area&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000FI73MA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt; &lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000P9ZBFA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8041062627673074333-6371636703328708892?l=messageboxproblem.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://messageboxproblem.blogspot.com/feeds/6371636703328708892/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://messageboxproblem.blogspot.com/2009/02/messagebox-problem-vb-2005-client-side.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8041062627673074333/posts/default/6371636703328708892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8041062627673074333/posts/default/6371636703328708892'/><link rel='alternate' type='text/html' href='http://messageboxproblem.blogspot.com/2009/02/messagebox-problem-vb-2005-client-side.html' title=''/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
