User Control in asp.net
Can anyone suggest me a link from where I could get all the aspects of user control in asp.net.. ...
Can anyone suggest me a link from where I could get all the aspects of user control in asp.net.. ...
my code - txtPhoneWork.Text.Replace("-",""); txtPhoneWork.Text.Replace("_", ""); txtMobile.Text.Replace("-", ""); txtMobile.Text.Replace("_", ""); txtPhoneOther.Text.Replace("-", ""); txtPhoneOther.Text.Replace("_", ""); location.ContactWork = txtPhoneWork.Text.Trim(); location.Co...
I get the following error intermitantly from the live website I develop (say twice a month). From the stack trace, it seems to be internal to the AJAX control toolkit. Error Message: Invalid object passed in, member name expected. (1): {"ActiveTabIndex":0,"TabState":[true,true,true,true]} I have found once other per...
Hello, It was told me to make a pluginable web app. with webforms. The idea is to have one base web application with a plugin host that will load any plugins and related to them web pages. As an example, I have my MyHostApplication with master page and a default.aspx file. When it is compiled, basically the project will have the files ...
Hi, I'm looking for a recommended spring graph to be used with ASP.NET MVC Flex spring graph example: http://mark-shepherd.com/SpringGraph/MoleculeViewer/bin/MoleculeViewer.html Thanks, E ...
I have created two tables in a SQL Server database and a RadioButtonList in an ASP.NET page. In one table I have stored values for each radio button as primary key. I want that on clicking that radio button, its primary key value in stored another table in a foreign key column. help out....... ...
Hi, I'm pulling my hair out (what remains), with performance issues with XSLTCompiledTransform in our live environments. Locally on developer machines and UAT the problem is slightly noticeable, however in the live environment performance can become agonisingly slow. Background: HTTPModule delivering the website (processModel extend...
Hi, I'm using the asp.net membership provider for authentication of the user. I have another table with additional user details linked to my aspnet_users table. When a user logs into my site I place what I call their 'UserProfile' into a session variable and I need to check the presence of this Session variable on every call in my con...
I am using the WCF Collection Service in asp.net, Just to learn I am using the SampleItem. The xml looks like this in the web browser: - <ItemInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <ItemInfo> <EditLink>http://localhost:8080/Service.svc/A</EditLink> - <Item> <Value>A</Value> </Item> </ItemInf...
I'm building a first MVC app in ASP.NET and I'm using link2SQL model to work with data. All tutorials on the microsoft site let you write LINQ code in the controller to get data and pass it to the view, like this: Function Index() As ActionResult Dim datacontext As New ErrorVaultDataContext Dim questions = From q In da...
How to access controls in master page using javascript? The master page consists of a search textbox, on key down event of the control I call a javascript function writtern inline of the master page. I get the value of entered in textbox in that javascript function. I have tried giving document.getElementById("<%=txtSearch.ClientID %>")....
I'm trying to use the Global.asax file in the root application of the website to catch requests for pdf files in the root that don't exist any more. I've configured iis to send pdf requests to asp.net. The whole thing works perfectly on development. It also works on the live system with missing .aspx pages, but not .pdf. Instead an "Erro...
Hi all, How we transfer my session from http page to https page. Thanks ...
Starting to do some work on an online gifts website. I have not worked on an e-commerce solution before. What I need from the solution is: The store front in MVC2 pattern. Build from scratch is fine. (desirable) Complete UI Independence - The user interface would use a lot of AJAX and jQuery. (very imp) Paypal, Autherize.Net and othe...
I am using ASP.NET MVC 1. I want to pass an int value to from an action to view. I can use 2 ways. Use ViewData dictionary. Define a class to contain the int value. Other these two, Is there a way to pass the int value to view so that I can get the int value using just Model like <label><%= Model %></label> ...
How can I dynamically insert images when user uploads an image file to SQL Server 2005 with C# in ASP.NET? This is to let users upload their profile photos in my web app. Is it very different from how it is done for windows app with C#? ...
I have this code Dim LogData As sterm.markdata = New sterm.markdata() Dim datelistquery As String Dim properdate As String If Session("TenHolStDateHP1") = "%" or Session("TenHolStDateHP1") = "" Then If Session("passedPropId") = "" Then 'QUERY USED IF NO DATE SELECTED AND A PROPID HAS NOT BEEN PASSED datelistquery = "S...
I'm starting to study unit testing now and I'm trying to decide between MS test and nUnit. What do you recommend me? I'm not an "IT professional", so my knowledge aren't (yet!) so much advanced. I will implement this in a project with .NET 3.5 using NHibernate, but I'll implement it too in an MVC project. ...
Hello , I am developing a web application using asp.net, telerik RadAjax control. I have to need to develop when mouseover the image then show a hyperlink and when click the clink then open a new window(like facebook profile picture change). Please Help me... ...
I am taking over the code of another person. This person is allowing double clicks to occur on RadGrids (Telerik Control).. I personally hate the idea of allowing double clicks in a web application. I tihnk it is not natural. Is there any good argument against double clicks in web apps? Or am I wrong and double clicks in web apps are go...