|
Is there any limitation for number of Asynchronous threads that we can create using ASP.net with configuration: IIS6.0, win 2003 server, net2.0, webservice, app pools.
|
|
|
|
|
NeetiGulati wrote: Is there any limitation for number of Asynchronous threads that we can create using ASP.net with configuration: IIS6.0, win 2003 server, net2.0, webservice, app pools.
What does it means ? Can you be more specific ?
Thanks in Advance !!
|
|
|
|
|
Can you elaborate the scenario?
AFIK, I don't think so ,but there will be performance overhead.
Cheers!!
Brij
|
|
|
|
|
NeetiGulati wrote: Is there any limitation for number of Asynchronous threads that we can create using ASP.net
There is nothing like Asynchronous threads in .NET, AFAIK. Do you mean Asynchronous operations? If yes, it uses thread pool thread. So maximum number of threads can be used depends on the thread pool settings.
|
|
|
|
|
Hi there
i want to create a user control which are create dynamically and in that i want function which take one parameter say id on behalf of that id it will return some collection of data.
i want number of textbox=no.of count of that database collection
Can any one provide me the Giudence on this topic
|
|
|
|
|
Have made the ascx file?
Create the object of Usercontrol at runtime and give the id at same time.
You can have one public property that will be set at the runtime according to ID by your function.You can put it in custructor or pageload.
Cheers!!
Brij
|
|
|
|
|
Ravi_21 wrote: i want to create a user control which are create dynamically
You want to create User Control (.ascx ) Dynamically or Want Add User Control Dynamically ?
Have a look on this[^]
Hope this will helps you.
|
|
|
|
|
Hello Friends,
I'm using FileUpload control for uploading the image in edit command for updating the existing image. And it's working fine but as i put the code inside the UpdatePanel it doesn't work and throws an error "Object reference not to an instance".
So how can i use the FileUpload control of a DataList in UpdatePanel.....
|
|
|
|
|
AFIK , you can't use file upload control inside update panel.
|
|
|
|
|
It can be used. There is something called PostBackTrigger . Check this[^]
|
|
|
|
|
Hey Navaneeth, Thanks for information . I was not aware of that.
Thanks Again !!!
|
|
|
|
|
Glad to know it helped
|
|
|
|
|
Thanks Navaneeth, But it's doing postback so where is AJAX. We can also do it without UpdatePanel and whats its advantage over simple code(without UpdatePanel)....
|
|
|
|
|
.NET- India wrote: But it's doing postback so where is AJAX
By postback do you mean the page is refreshing? Fileupload control can't work using AJAX. So it needs a postback to send the data.
|
|
|
|
|
Dear All,
I am trying to display records of text data and some image in repeater but requirement is if the record is without image then text should align on left site,
But if the image is in record then first image should display on left side i mean left alignment and text should display beside with image but on he right side of image.
Now i need some help how to display these records in repeater item tag with if condition.
if image if true in image class then first image display on left then text display on right if no image in record then simple text display on left
kindly tell me what should i do.
Sajjad Ali
|
|
|
|
|
|
Look into System.Net.WebClient class. Work with DownloadString[^] method and save the string with .xml extension.
|
|
|
|
|
Hi I am using ASP.Net 1.1,I am not finding this namespace.Please suggest.
|
|
|
|
|
Thanks You It is working.
|
|
|
|
|
in my application i want to open a database cursor.can you plz help me out.
thanx in advance
|
|
|
|
|
A database cursor is in the database, not asp.net. I suspect you are actually looking for the DATAREADER.
Bob
Ashfield Consultants Ltd
|
|
|
|
|
SQLServer database cursor? AFAIK, you can't do that. If your database is oracle, you can do this. BTW, you are in wrong forum.
|
|
|
|
|
hi i have to make a vate rating system
like
there are 1,2 3,4 5 point out of 5 point that a user can vote
in my DB a table that have field TotalVote, Rating
so any one will help me how i calculate rate
the answer should like this ( 3.6 / 5) total 14 votes
|
|
|
|
|
Sum up the total vote and divide by the number of votes, i.e. take the average. I assume the 5 is the maximum you can allocate.
Bob
Ashfield Consultants Ltd
|
|
|
|
|
This is nothing but simply average calculation.
|
|
|
|