|
As far as I can understand yuo are looking for the AJAX AUTOCOMPLETE control. Try googling for AJAX AUTOCOMPLETE, there are plenty of examples.
Bob
Ashfield Consultants Ltd
|
|
|
|
|
Hi
I have to develop a community web site. I want to know is there some open source module available in .Net for the development of community website. ( Like in web development we have Dotnetnuke )
Thanks
|
|
|
|
|
Why you are trying to use Sharepoint portal?
cheers,
Abhijit
|
|
|
|
|
Its a student project......... So i dont have to create it from scratch i have to show some specific features so if i get some already developed open source platform it will be easy as i am permited to use some existing template. I just have to show a functioning community site.
Thank You
|
|
|
|
|
If you are a student you should undertsand google. Try there, I'm sure you will find something.
Bob
Ashfield Consultants Ltd
|
|
|
|
|
I HAVE CONVERTED 2.0 WEBSITE into 3.5 and now getting error
crystal report viewer is ambigous in the namespace of crystaldecisions.web....
how to solve it...??
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Windows.Forms, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Enterprise.Framework, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Shared, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Enterprise.InfoStore, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.ReportSource, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
umerumerumer
|
|
|
|
|
when we create a wesite in VS.NET 2005 then where the solution(.Sln) file located.through which we can open website(all linked web pages) direct clicking that file.
|
|
|
|
|
It depends on the sort of project you create. There's not always a sln file, sometimes you just open the website by saying you want to open a website and specifying the root dir.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
I have created a website so plz let me know how i can open it by direct clicking a file without open VS.
Thanks.
|
|
|
|
|
.sln for the webstite is created in the folder that we give at the starting of project creation.
Cheers!!
Brij
|
|
|
|
|
Hi Brij,
In VS 2005 I have created new asp.net website(suppose ABC) and location i choose as file system.
but in ABC no .sln file
Thanks.
|
|
|
|
|
kirtiaroraa wrote: and location i choose as file system.
Yes. and i am sure it is not the default location, that is in your Document Settings.
Now, open that default folder ( C:\documents settings \ user name \ Vs 2005 \ projects \ )
you will get a folder name with same of your creared web sites and check there is your sln file.
I have created a web sites on "E:\Practice\website3" , there was no .sln files , but its in Default folder.
Right Click on Sln file and open it using Notepad and read the content.
It will clear your doubts.
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "E:\Practice\WebSite3\", "E:\Practice\WebSite3\", "{1DABCD89-E96A-4608-AC8C-8435963E54EC}"
ProjectSection(WebsiteProperties) = preProject
Debug.AspNetCompiler.VirtualPath = "/WebSite3"
Debug.AspNetCompiler.PhysicalPath = "E:\Practice\WebSite3\"
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite3\"
Debug.AspNetCompiler.Updateable = "true"
Debug.AspNetCompiler.ForceOverwrite = "true"
Debug.AspNetCompiler.FixedNames = "false"
Debug.AspNetCompiler.Debug = "True"
Release.AspNetCompiler.VirtualPath = "/WebSite3"
Release.AspNetCompiler.PhysicalPath = "E:\Practice\WebSite3\"
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite3\"
Release.AspNetCompiler.Updateable = "true"
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "4207"
DefaultWebSiteLanguage = "Visual C#"
EndProjectSection
EndProject
cheers,
Abhijit
|
|
|
|
|
Look in My Documents\Visual Studio 2005\Projects or WebSites
|
|
|
|
|
Hi,
I have a popUp calendar created using asp.net.
The calendar returns it's selection to the calling page's TextBox using a javascript method like:
function ReturnDate()<br />
{<br />
window.opener.document.forms["<%= strFormName %>"].elements["<%= strCtrlName %>"].value = "<%= strSelectedDate %>";<br />
window.close();<br />
}<br />
I have the AutoPostBack=true for the TextBox.
But the PROBLEM: since the date is returned from the popUp, it doesn't cause a postback to the calling form. So, if the user goes back to the calendar - selects a different date, it(TextBox) keeps the older date in the Text property - even though it's showing the new value in it.
Any idea how to solve this? Thanks.
|
|
|
|
|
This is horrid. You should handle your date selection entirely on the client side, not post back all the time like this.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Thanks for the suggestion.
Would it be possible to get around this for now?
|
|
|
|
|
As I understand it, the issue is that your design is totally broken. You have a hard coded value for the date, so it never changes. Instead, you should use javascript to read the value out of the control when you show the popup. The ClientID property of your textbox on the server side, will tell you what it's going to be called on the client side, so a js block like
var tb = document.getElementById('<%=MyTextbox.ClientID%>';
// now pass the text of this control to your popup, make sure you check that tb is not null first
is what you need. I suspect this will do away with the percieved need for auto postback, too.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Sorry I think I wasn't clear enough.
The popup has the javascript function I showed on my first port. That returns the selected date to a TextBox on the calling form(page). This works with no problem.
Problem occurs when user goes back to the calendar, changes the date (without changing any other selection that causes a post back). The selected date shows up fine on my calling page in the text box.
So, it displays the right date - while keeping the older date in the Text property because no post back has occurred.
I hope you can give me a clue.
Thanks.
|
|
|
|
|
you're saying that the issue is that when you post back, you get the old value ? Or that when you show the popup again, you get the old value ? The latter is what I understood you to be saying and what I could see would happen through looking at the code. In that case, what I said, is what will fix it.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Thanks Christian, it was helpful and managed to fix it.
|
|
|
|
|
Hi, I am trying to import contents of excel spread sheet to the panel of textboxes (NOT datagrid). can anybody please tel me how to import the contents of each cell in the column into the textboxes dynamically as soon as the user opens the link of excel into the form. pls temme how to get the link into the form and how to retrieve the cells contents from that excel link and place into textboxes.
pls gimme some guidance .. i jus know how to create textboxes inside a panel.. but the rest im totally lost.. thanks.
|
|
|
|
|
You use office interop to read the cells. You're writing a website where the user uploads an xls and it's fed back as a panel of textboxes ?
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
ya .. user must be able to browse for some xls document in his local hard disk and the cell contents in that particular document must be displayed in panel of textboxes in the form.. pls help me with code snippet.. im dunno how to start..
|
|
|
|
|
Like I said, you start with the interop libraries from Microsoft to control Office from .NET code.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
can you please send me some material similar to this stuff..
|
|
|
|