|
Use the builtin ASP.NET login controls and database. I know the language. I've read a book. - _Madmatt
|
|
|
|
|
|
rapidshare,hotfile and many site they restric user to download more than one file at a time.
what is their concept and how can i implement this concept by asp.net
thankstbhattacharjee
|
|
|
|
|
|
HI All,
Need some suggestions.
suppose, I have a free Blog hosting site like blogspot.com and i want to restrict each blog size to not more than 20MB,to do this i need to calculate the size of the Blog hosted on the server
how do i calculate the size of every blog?
Thanks in advance,Satish
|
|
|
|
|
You need to ask google, if there is no info regarding the blog size.
You cant calculate yourself, as it is not in your own server.
|
|
|
|
|
how to download a large file with resume facility in asp.net. thanks tbhattacharjee
|
|
|
|
|
You could have a look at BITS - Background Intelligent Transfer Service
|
|
|
|
|
is it possible to download any zip file to client machine through icallback. please help me with a sample code.
Thanks in advancetbhattacharjee
|
|
|
|
|
i hard that partial postback like effect can be achived by using IFrame.so can anyone help me with few sample code to get the partial postback like effetct by IFRAME.Thanks in advance. tbhattacharjee
|
|
|
|
|
|
Hi,
I'm developing a user control that is loaded dynamically into a page.
The user control has 4 dropdownlists(DDLs). Each is populated dynamically depending upon the values selected in the previous DDLs. Each DDL is in a separate updatepanel (not nested) and has the autopostback set true. Each has its trigger set as the SelectedIndexChanged event of the DDL before it.
The problem is, if the user selects a (non default) selection 'x' in the first DDL and tries to select something say 'p' in DDL2, on postback, SelectionChangedEvent for DDL1 is fired (as per normal page lifecycle) to select 'x' which reloads DDL2 before SelectionChangedEvent of DDL2 is fired. This causes the selected 'p' in DDL2 to be lost and the page comes back again with the default selection for DDL2. Similar is the case with other DDLs. Here's the logic of my code:
Page_Load()
{
//Load DDL1
}
UpdatePanel2_Load()
{
//Load DDL2
}
UpdatePanel3_Load()
{
//Load DDL3
}
UpdatePanel4_Load()
{
//Load DDL4
}
OnSelectedIndexChanged_DDL1()
{
//Load DDl2,DDL3,DDL4
}
OnSelectedIndexChanged_DDL2()
{
//Load DDL3,DDL4
}
OnSelectedIndexChanged_DDL3()
{
//Load DDL4
}
What this does is, when OnSelectedIndexChanged_DDL1() is fired on postback to select 'x' in DDL1, it reloads DDL2,DDL3,DDL4 and by the time OnSelectedIndexChanged_DDL2() is fired (because of the selection 'p' made by user) the statement 'DDL2.SelectedValue' inside it only returns the default DDL2 selection 'd' and not the user selection 'p'. Can I get the value selected by the user in Page_Load itself (say from Viewstate) instead of waiting for OnSelectedIndexChanged_DDL2() to fire?
I know it's really long and might seem confusing but I really need a solution to this and am losing my mind! Any help would be great. Thanks
|
|
|
|
|
hi all i tried creating a web service.it is being created successfully.
but there is no bin folder and no bin/webservice.dll I created web service as a new project.
and a new directory.Can any body give me some gud link or article which is self suffficeint
to understand web service.How we can deploy the web service on the net.also i am confused
about the diffrence in webservices created as a individual project(as mine) and one which
is created inside our our website.what is the diffrence.how to use the web service in our application.plz guide me.thanks...
regards..
|
|
|
|
|
|
thanks the article is self sufficient.....
|
|
|
|
|
Hi all,
I want to keep track of date/Time and IP address of client(end users) system. He is updating data through asp form. Datetime and ip address of the system it should be automatically update in database. Can any one pls help with this..
with regards,
************ S G KORE *******************
|
|
|
|
|
What is the problem with this?
Just use Request.UserHostAddress() / Request.ServerVariables ["REMOTE_ADDR"]
DateTime.Now to get date etc.
Now save it to database.
|
|
|
|
|
Has any body used WEB client software factory in their project. I mean the MVP pattern. I am very much confused with MVP patterns . Is our asp.net code behind is not mvp pattern.
Do anybody have any small project reference with WEB client software factory.
|
|
|
|
|
Hi, I created one web applicaiton which contains aspx and aspx.cs files. I want this application as exe file to give this to client. So i tried this by adding webseup project to solution and i created a msi/exe file for this project. Up to here every thing is fine.
But when i install this appliation it is creating a folder with all aspx and aspx.cs files. But i dont want to place .cs files at client place.
I tried by publishing website. Then its is giving dll's. But i can;t make it as exe at that time, bcz its giving error as "already precompiled".
what is the solution for my problem? how can i give exe file to client which doesn't contins code files once he installed in his machine.G. Satish
|
|
|
|
|
You have to use a Precompilation.
Right click on your Web Project and go to Properties and go to "MsBuild Option" and in that tab there an Option that says
"All this precompiled site to be Updatable" and try againVuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa@its.co.za
http://www.itsabacus.co.za/itsabacus/
|
|
|
|
|
Thank You. It works fine G. Satish
|
|
|
|
|
I have one table with two rows in tables
1. Employee Details
2. Employee History Details
Depending on my input parameter I have to show only one row and other I have to show to make hide
if @hisId=0 then I have to show Tablerow1
if @hisId=1 then I have to show Tablerow2
Kindly Tell me solution.
|
|
|
|
|
You can't hide individual rows but you can filter the dataset so only the required rows are rendered I know the language. I've read a book. - _Madmatt
|
|
|
|
|
You can go to properties of each row and give validation there.
Rightclick row->properties->visibility->Expression. There give the validation for each row seperately. (I mean this u need to do seperately for each row)
=IIF((Parameters!hisid=0,false,true)
=IIF(Parameters!hisid=1,false,true)
NainaNaina
|
|
|
|
|
The rows in a ssrs table are rendered dynamically based on the dataset assigned, you can't control the individual table rows in this way. I know the language. I've read a book. - _Madmatt
|
|
|
|