|
May I know the difference between Appserver and Webserver ? Purpose / advantage / Disadvantage of the above.
Thanks in advance.
Regards,
Kumuda Srinath
|
|
|
|
|
Googled:
Difference between Appserver and Webserver[^]
Surely it's easier to do your homework through Google.
the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
hi ,
wish u happy new year.
i have created a setup and installed the console appln in a diffent system .Everything is working except a form which has report viewer to display output.i think i have Not follwed the procedure to create setup for applns which have reports properly.the error which is dispaly when i try to display the report using report viewer in the application is
"System.Runtime.Interopservices.com exception
(0x80040154):com object wutg cksud{...} is either not valid or not register
at crystal desicions.crystal reports.ReportDocument.[]=()
-do- .Internalinit()
-do- .ctor()
at projname.projname..ctor
at projname.frmname.btn10_click()
any suggestion is welcome...
thank you for ur time and help in advance..
enjoy..
|
|
|
|
|
Looks like you don't have Crystal Reports installed.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
thanks for the reply,
but i dont think we need to install crystal reports on the client machine for viewing or running the report using the application which i already created.
enjoy..
|
|
|
|
|
But you will need the dlls for the report viewer. They need to be included in your setup package.
the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
thnsk for reply
can u please suggest the dlls that can be included and where there would be present to include. i am using segate crystal reports and visual studio2003 .
-- modified at 8:17 Tuesday 9th January, 2007
enjoy..
|
|
|
|
|
Hi dears,
I want to delete a bmp file that is shown in page by click Delete button! but an error with message 'Access to the path ".../t.jpg" denied ...' occures! how can I fix it?
www.behzadi.net
|
|
|
|
|
Set the required permissions for that folder (write).
BTW, is t.jpg really a bmp file? :P
|
|
|
|
|
Use these lines
string urlFile_ToDelete = Request.PhysicalApplicationPath + url_image;
File.Delete(urlFile_ToDelete);
Be sure that the asp.net process over the IIS have the permission to modify the archives that belong to the folder where the image is.
keep Learning and you never will be out of date...
|
|
|
|
|
Hai all,
Here my question is simple and try to understand exactly.
I am using different panels in a single form.
I have given these panels in a TABLE's single row( means in a row,differnt columns, and each column contains each panel).On the page load it is showing all the panels in that table row.
My requirement is,can i show each column means each(one) panel at a time(one panel at one tome).can i set any property of the table to show in this way???TabIndex in the table meant for what???
Can anyone try to unerstand the problem and give me the solution???
kissy
|
|
|
|
|
my browser is not showing image button and images while iam running the web application....
if the page is made to view in browser with out running the web application then it is showing image button and images in a browser
after running the web application iam getting the problem with the image buttons and image controls...
please any body help me to overcome this problem .!
hope i wil get some suggestion.....
byeee guys
srikanth raju
|
|
|
|
|
Can you specify what exactly you mean by "running the web application"?
If you view the page without "running the application", how do you do that? The application has to be running for it to show the page, so you have to mean something else...
---
Year happy = new Year(2007);
|
|
|
|
|
I think he means the path is set up in IIS, so he can run it with F5 from VS, or he can just type 'localhost' in the browser. I think one works and the other does not because the paths in his app get screwed up by the setup of his web app.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
thanks for u response....
see iam clearly explaining my problem
iam doing a web application in VS.net 2003 in XP sp2 OS
the problem is,
i use imagebutton control and image control on my webform in VS.net 2003.
when i specify the image url property to some image in my web application directory then i can see the image on the webform and when i right click the webform and select "view in a browser" then also i can see the image in my page.
but when i run the application by pressing F5 i do got a problem...
iam using IE7 as my web browser, it is not displaying the image of the image button and image control that i had used in my application. instead it is displying a panel with the left top corner with a cross symbol ...
srikanth raju
|
|
|
|
|
thanks for u response....
see iam clearly explaining my problem
iam doing a web application in VS.net 2003 in XP sp2 OS
the problem is,
i use imagebutton control and image control on my webform in VS.net 2003.
when i specify the image url property to some image in my web application directory then i can see the image on the webform and when i right click the webform and select "view in a browser" then also i can see the image in my page.
but when i run the application by pressing F5 i do got a problem...
iam using IE7 as my web browser, it is not displaying the image of the image button and image control that i had used in my application. instead it is displying a panel with the left top corner with a cross symbol ...
srikanthraju
|
|
|
|
|
Your problem is that the path you provide in your app works in the browser, but is wrong from the point of view of the root dir of your web app.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
thanks for u response....
see iam clearly explaining my problem
iam doing a web application in VS.net 2003 in XP sp2 OS
the problem is,
i use imagebutton control and image control on my webform in VS.net 2003.
when i specify the image url property to some image in my web application directory then i can see the image on the webform and when i right click the webform and select "view in a browser" then also i can see the image in my page.
but when i run the application by pressing F5 i do got a problem...
iam using IE7 as my web browser, it is not displaying the image of the image button and image control that i had used in my application. instead it is displying a panel with the left top corner with a cross symbol ...
srikanthraju
|
|
|
|
|
Then the problem is almost certainly what I said it was - the path you're providing is right from the base of your virtual directory, and not right from the context of where the app is run by Visual Studio.
Christian Graus - C++ MVP
'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
|
|
|
|
|
using C# and ASP.Net
I need to create tables on fly
regards,
cnu
|
|
|
|
|
A repeater is the best way to do this.
What is your data source ?
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
thing is i need to create table in the backened ie sql server 2000
awaiting for ur response
with regards
|
|
|
|
|
OK, well, that;s a totaly different sort of table, obviously.
Generally speaking, apps that create data tables on the fly are showing signs of poor design. Why is your design so open ended that you want to create arbitrary tables, and how will you access their information once they exist ?
The core answer is, you can run the SQL to create a table if you want to.
Christian Graus - C++ MVP
'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
|
|
|
|
|
hi,
i want to display an image in a gridview which is on another page.
part of my code is:
foreach(DataRow row in ds.Tables[0].Rows)
{
row.ItemArray[2] = //"~/Default2.aspx?id=1"; -> this is my url
}
this row.ItemArray[2] is ImageField
Of course this doesn't work.
i saw an example in visual basic:
For Each tempRow As DataRow In ds.Tables(0).Rows
tempRow.Item("imgFile") = ("imgGrab.aspx?id=" & tempRow.Item("imgID"))
Next
please, if anyone has an idea.
Nadya
|
|
|
|
|
Dear Sir,
I have a web application using DSO Framer control, but when my client wants to view the page. He has to make his security settings low.
By using the fusion technology we can make the aciveX control as Windows control and display it by using <object> tag in the Webbrowser, then it will act as a normal .net web control
For this I have to take the class id of DSO Framer control and I have
Please help me if possible. Thank you.
Regards,
S/W Engineer
Akebono Soft Technologies
aleem_abdul@akebonosoft.com.
|
|
|
|