what is integrated security in connection string in asp.net.
what is integrated security in connection string in asp.net. ...
what is integrated security in connection string in asp.net. ...
What are the things to be done before hosting the website in internet server? All kinds of testing and defect fixing work are over for the website which is currently hosted in intranet server. We have the server informations for hosting the website and also the database details. We also have the list of third party controls/softwares whi...
Hi am running the asp.net application...am enhancing the already developed project..i want to create the horizontal menus through which i should get the menu items from the database so that if any changes i have to made in future i can update in database alone not in the application,,,i dont know how to give link and where to code for t...
I have written a code function validate() { if(document.getElementById("<%=txtSearch.ClientID %>").value=="") { message="Enter the User Id To Search"; document.getElementById("<%=lblMessage.ClientID %>").innerHTML=message; return false; } Here I am using <%= %> tags. I want to know how do they work without making a trip to t...
Hi All, I am in a very big trouble. Please help!!!!!!!!!! My website has been attacked by some malicious script < / title> < script src = http : // google-stats50.info/ur.php >. This script is appended to any column(s) of some table automatically. I have removed this script. But after a few hours, it re-appeared in some tables. But thi...
So I just googled n found out this code:- MailMessage message = new MailMessage ("[email protected]","[email protected]","Testing","This is a test mail"); Now my ques:- How do I send a nicely formatted Email with links and all instead of simple text "This is a test mail" ?? I don't wanna attach no file ...
Hi all, I developed a screen in which there are fields like first name,username,password and email. I validated these fields using javascript and came to know that javascript is not that safe. So i decided to validate on server side also. My question is whether i can use asp controls like requiredfieldvalidator, regularexpression validat...
Please understand my problem. JQGrid is not looking fine in IE. i have used jqgrid in almost all pages.But on only one page,while diaplaying data in JQGrid,by default some blank space is diaplaying and after that the records are getting diaplayed. I have debugged this.Records are getting correcly bind to dataSet. I used same master pag...
using this code to send email var message = new MailMessage("[email protected]", "[email protected]"); message.Subject = "Testing"; message.IsBodyHtml = true; message.Body = "<html><body>IMAGINE A LOT OF HTML CODING HERE</body></html>"; The problem is...I just copied the HTML that I want to send as email and now I have ...
I am trying to apply a set of custom controls to a master page via code-behind during Page_Load, initializing the class and using Page.Header.Controls.Add(). I have another child master page between the parent and the content and this child master references directly in its own code a javascript file which calls a jQuery function (.ready...
I'm using Telerik's RadDateTimePicker to select the time of the event in my web-app (ASP.NET, .NET 3.5). The application is targeting multiple countries, my date formatting is taken care of based on users' CultureInfo. There's one problem, I need the time part of the date/time to ALWAYS show in 24 hour format, no matter what Culture...
Hi, I was wondering whether in ASP.NET it is possible to change properties of bunch of controls in one operation. Of course there are probably many ways around this, but does anybody know an elegant solution to this? Example pseudo-code First Name <asp:TextBox runat="server" ID="tbxFirstName" ControlGroup="Editable" /> <asp:Label runa...
Hi guys, Having a really strange issue at the moment with an ASP.NET site I'm currently building. At the moment, I'm writting the HTML and CSS for a page called Dashboard.aspx. But when I go to view the page in a browser, half the time it throws up this error: ASPNET: Make sure that the class defined in this code file matches the...
How to restrict folder access in asp.net like i dun want any other to see my Uploads folder in browser by link http://www.myweb.com/Uploads Please help ...
On my content page I have the code (in page_load): if (Master.pageAction == "remove") { int removeProductID = int.Parse(Request.QueryString["ID"]); int removeOptionID = int.Parse(Request.QueryString["optID"]); Master.myBasket.removeFromBasket(removeProductID, removeOptionID); //Response.Redirect("...
Hi, Our W3WP process on our production server is constantly high. It doesn't max out at 100% but jumps up into the 90%s a fair bit. To help look into this I profiled the live aplication using JetBrains dotTrace. The results were as expected. All the slow methods were NHibernate functions that queried our database. My question is, would...
I had ModalPopupExtender where display when user unregisterd so it worked well with IE browser but with safari and firefox it displayed well but when I click on button it didnot give ne any event you can access this through this link (http://beta.elarabygroup.com/DealerList.aspx) with user:saad password:111 .please any one help me. ....
Hi Team, I have a Range Validator as follows. It is for restricting values between 1900 and 2070. However, it fires error when I enter a alphabet also. I want this to be fired only if the user enters integer values. How do I overcome it? Please help.. <asp:RangeValidator ID="RangeValidator1" runat="server" Co...
I want to know in which event or process asp.net page set/update the value of IsPostBack. How page figure out it value? ...
I am not able to Disable CheckBox in GridView , whats the problem with my code ? can somebody please take a look at my code and suggest something. foreach (GridViewRow row in GridView1.Rows) { CheckBox ch = (CheckBox)row.FindControl("CheckBox1"); if (ch.Checked) { String ExamineeId ...