ı am using aspxbutton (devexpress) I understand that it is not concerning with vs 2010.It is concerning with (devexpress).But ı havent solved problem yet.
tomorrow_ft
Posts
-
web modalanchor -
web modalanchorbut when I use vs. 2008, I dont have any problem,in vs. 2010 I must click twice time.
-
web modalanchorHi,in vs. 2010 c# web site project I am using web modalanchor for new aspx page. when ı want to close modal web page,I must click twice time page closing (x)button.Why this is happening I cant understand.I am waitinfg for your ideas.. thaks..
-
aspxgridview and checkbox problemQuote:
hi, I am using an aspxgridview and two checkboxes(for header and dataitem).When I check header checkbox I want to check all checkbox.I am also using java script code.essentially, I can do this, but I must check header checkbox twice times.I didnt understand why it is happening.ı am writing this code checkbox_checked event and header checkbox's autopostpak is true. When I used normal gridview I didnt have any problem I could do this without problem., <script language="javascript" type="text/javascript"> function SelectAll(id) { var IsChecked = id.checked; var Chk = id; // Parent = document.getElementById('GrdPerliste'); Parent = document.getElementById('<% = GrdPerliste.ClientID%>'); var items = Parent.getElementsByTagName('input'); for (i = 0; i < items.length; i++) { var deneme = items[i].type; if (items[i].id != Chk && items[i].type == "checkbox") { if (items[i].checked != IsChecked) { items[i].click(); } } } } </script> protected void Checksec_CheckedChanged2(object sender, EventArgs e) { CheckBox chk = (CheckBox)sender; GridViewHeaderTemplateContainer bulundugucontainer = (GridViewHeaderTemplateContainer)chk.NamingContainer; ((CheckBox)bulundugucontainer.FindControl("Checksec")).Attributes.Add("onclick", "javascript:SelectAll('" + ((CheckBox)bulundugucontainer.FindControl("Checksec")).ClientID + "')"); }
-
aspxgridview,checkbox and check allthanks for your answer but my problem is that I have to check header checkbox twice.this works only when I check twice so when it works,header check seems not check
-
aspxgridview,checkbox and check allhi, I am using an aspxgridview and two checkboxes(for header and dataitem).When I check header checkbox I want to check all checkbox.I am also using java script code.essentially, I can do this, but I must check header checkbox twice times.I didnt understand why it is happening.ı am writing this code checkbox_checked event and header checkbox's autopostpak is true. When I used normal gridview I didnt have any problem I could do this without problem.,
<script language="javascript" type="text/javascript">
function SelectAll(id) {var IsChecked = id.checked; var Chk = id; // Parent = document.getElementById('GrdPerliste'); Parent = document.getElementById('<% = GrdPerliste.ClientID%>'); var items = Parent.getElementsByTagName('input'); for (i = 0; i < items.length; i++) { var deneme = items\[i\].type; if (items\[i\].id != Chk && items\[i\].type == "checkbox") { if (items\[i\].checked != IsChecked) { items\[i\].click(); } } } } </script>
protected void Checksec_CheckedChanged2(object sender, EventArgs e) { CheckBox chk = (CheckBox)sender; GridViewHeaderTemplateContainer bulundugucontainer = (GridViewHeaderTemplateContainer)chk.NamingContainer; ((CheckBox)bulundugucontainer.FindControl("Checksec")).Attributes.Add("onclick", "javascript:SelectAll('" + ((CheckBox)bulundugucontainer.FindControl("Checksec")).ClientID + "')"); }
-
devexpress and webmodalanchorhi, I am using an aspxbutton and webmodalanchor for opening a new pop up page.I am opening the page but when I want to close the page, the page is being closed two times.I think the page loading two times If I use an aspxhyperlink the page, is being closed normally.But ı want to use aspxbutton. Thanks..
-
win7,sc delete, windows servis,process startfor administrator I use System.Diagnostics.Process.Start(@__"c:\Windows\system32\cmd.exe__", argu);
-
win7,sc delete, windows servis,process startI want to delete this servis with this code but it can't be deleted
-
win7,sc delete, windows servis,process starthi all, I have used win xp an this code runnig normally but when I started to use win7 it is not working what is it my problem thanks.. foreach (ServiceController service in services) { if (service.ServiceName == "SistemServisleri") { string argu = @"/C sc delete SistemServisleri"; System.Diagnostics.Process.Start(@"c:\Windows\system32\cmd.exe", argu);// for win7 I used it but not working System.Diagnostics.Process.Start("cmd", argu);// for winxp I used it and working } }
-
process.start and sc delete servicenameI find it,I have dealed with it since morning, string argu = "/C sc delete SistemName"; System.Diagnostics.Process.Start("cmd", argu); good works..
-
process.start and sc delete servicenameHi all, I want to use process.start function with "sc delete servicename" command How can I do this??
-
windows service usernamehi all, normally in win app. or web app. I can take windows log on username with this code "System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();" but with windows service I can't do this, it takes like this: "NT AUTHORITY\SYSTEM" Howcan I do this with windows service?? thanks..
-
setup and unistall:( nothing changed when I tried to install, service all times give this error: error 1001:the apperred system is still there.
-
setup and unistallthanks for your answers,you understand correctly my problem my projectinstaller class only like this: namespace SistemServis { [RunInstaller(true)] public partial class ProjectInstaller : Installer { public ProjectInstaller() { InitializeComponent(); } } I added aproject installer but I didn't add anything else. Do I have to write different things???
-
setup and unistallI found them and I did them but it is not work I unistall service "sc delete servisname" from command prompt ,is it necessary tu use this command?
-
setup and unistall"Add the Condition NOT PREVIOUSVERSIONSINSTALLED for Install and Commit. In your Setup-project choose RemovePreviousVersion: True and change the UpgradeCode and Version" how I add NOT PREVIOUSVERSIONSINSTALLED condition and choose RemovePreviousVersion where is it??
-
setup and unistallhi all, I wrote a service in c# and I prepared a setup to service but now I want to unistall if service install before and then install last setup how I do this?? thanks..
-
windows servicewhere do I get it
-
windows serviceanyway start type is automatic