New to ASp.net ....few Questions
-
Q1. What is mbox ? Q2. Why web parts works indifferently ..i mean to say some time they appear and sometimes they wont ? Q3. Whatz da correct way to create a project in virtual directory ? Q4. I have worked on personalization .. adding some code under the web config file ...and so on but i want to know how to use it in the real time Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ? Please do reply Regards Sindhu tiwari
its me sid
-
Q1. What is mbox ? Q2. Why web parts works indifferently ..i mean to say some time they appear and sometimes they wont ? Q3. Whatz da correct way to create a project in virtual directory ? Q4. I have worked on personalization .. adding some code under the web config file ...and so on but i want to know how to use it in the real time Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ? Please do reply Regards Sindhu tiwari
its me sid
sindhutiwari wrote:
Q1. What is mbox ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
sindhutiwari wrote:
Q1. What is mbox ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
please if possible ,some coding description..Where to use it *** I can google these things ..but i can find expertise answers there
its me sid
-
please if possible ,some coding description..Where to use it *** I can google these things ..but i can find expertise answers there
its me sid
sindhutiwari wrote:
Q3. Whatz da correct way to create a project in virtual directory ?
When creating a website project, specify the virtual directory path you like to get it created.
sindhutiwari wrote:
Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ?
Simple way could be setting passwords to the webservice parameters. For detailed information, you need to look at MSDN[^] article on web service security.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
sindhutiwari wrote:
Q3. Whatz da correct way to create a project in virtual directory ?
When creating a website project, specify the virtual directory path you like to get it created.
sindhutiwari wrote:
Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ?
Simple way could be setting passwords to the webservice parameters. For detailed information, you need to look at MSDN[^] article on web service security.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
thanks for the reply navneeth ... My question 1 is not clear if possible please tell me how to use mbox programatically ...
its me sid
-
Q1. What is mbox ? Q2. Why web parts works indifferently ..i mean to say some time they appear and sometimes they wont ? Q3. Whatz da correct way to create a project in virtual directory ? Q4. I have worked on personalization .. adding some code under the web config file ...and so on but i want to know how to use it in the real time Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ? Please do reply Regards Sindhu tiwari
its me sid
1 - no idea. Tried google ? It has nothing to do with ASP.NET, at least, not the core library, I can promise you that 2 - probably because your server is broken, or something else changes. 3 - whatz da ? What language is that ? 4 - I have no idea what you're asking. If you want to store stuff dynamically, use a database 5 - the most common way is to have a parameter that is a password, so people who don't know the password, can't use the method, it fails. Or, you can restrict the users whose connections you accept to an IP range, if that's possible with your user base.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
1 - no idea. Tried google ? It has nothing to do with ASP.NET, at least, not the core library, I can promise you that 2 - probably because your server is broken, or something else changes. 3 - whatz da ? What language is that ? 4 - I have no idea what you're asking. If you want to store stuff dynamically, use a database 5 - the most common way is to have a parameter that is a password, so people who don't know the password, can't use the method, it fails. Or, you can restrict the users whose connections you accept to an IP range, if that's possible with your user base.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Q1. What is mbox ? Q2. Why web parts works indifferently ..i mean to say some time they appear and sometimes they wont ? Q3. Whatz da correct way to create a project in virtual directory ? Q4. I have worked on personalization .. adding some code under the web config file ...and so on but i want to know how to use it in the real time Q5 If i am having a web service running at my server then anyone can add reference of it to their project and use it ..how can i stop others to use it ? Please do reply Regards Sindhu tiwari
its me sid
sindhutiwari wrote:
Q1. What is mbox ?
"mbox is a generic term for a family of related file formats used for holding collections of electronic mail messages." Wikipedia: mbox[^]
Despite everything, the person most likely to be fooling you next is yourself.
-
sindhutiwari wrote:
Q1. What is mbox ?
"mbox is a generic term for a family of related file formats used for holding collections of electronic mail messages." Wikipedia: mbox[^]
Despite everything, the person most likely to be fooling you next is yourself.
Thank u Guffa ....and regarding "da" Leave it .. Q1. Tracking Session State ..i came to know that it is done in three ways .. 1. via cookies 2. URL 3. client profiles. I know first one what abt 2 and 3 how to track the session state Plz tell me thank u Sindhu tiwari
its me sid
-
Thank u Guffa ....and regarding "da" Leave it .. Q1. Tracking Session State ..i came to know that it is done in three ways .. 1. via cookies 2. URL 3. client profiles. I know first one what abt 2 and 3 how to track the session state Plz tell me thank u Sindhu tiwari
its me sid
Not true. Session state is stored on the server. Cookies are stored on the client. Values can be passed on the URL. These are three different mechanisms.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Thank u Guffa ....and regarding "da" Leave it .. Q1. Tracking Session State ..i came to know that it is done in three ways .. 1. via cookies 2. URL 3. client profiles. I know first one what abt 2 and 3 how to track the session state Plz tell me thank u Sindhu tiwari
its me sid
sindhutiwari wrote:
...and regarding "da" Leave it ..
All kidding aside, I think that you should consider the small niceties like writing proper english like "you" instead of "u", "about" instead of "abt", and so on. You are more likely to get a response if you do. It's more time consuming to read sloppy writing, and if you don't even bother to type all the letters in a word, do you expect that anyone would bother to read them? "Please" means something that "plz" or even "plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" fails to do. A "Thank you" feels more sincere than a "10x alot".
sindhutiwari wrote:
Q1. Tracking Session State ..i came to know that it is done in three ways .. 1. via cookies 2. URL 3. client profiles.
Four ways. 4. Form data Cookies and Session variables are user specific, i.e. if the user has more than one window, they share the same state. Querystring and form data are window specific, i.e. if the user has more than one window, they have separate state. Cookies, querystring and form data are sent via the browser in plain text. Session variables never leave the server. Data that you put in cookies and session variables stays there. The querystring and form data has to be sent along from every page, or the data is lost.
Despite everything, the person most likely to be fooling you next is yourself.
-
sindhutiwari wrote:
...and regarding "da" Leave it ..
All kidding aside, I think that you should consider the small niceties like writing proper english like "you" instead of "u", "about" instead of "abt", and so on. You are more likely to get a response if you do. It's more time consuming to read sloppy writing, and if you don't even bother to type all the letters in a word, do you expect that anyone would bother to read them? "Please" means something that "plz" or even "plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" fails to do. A "Thank you" feels more sincere than a "10x alot".
sindhutiwari wrote:
Q1. Tracking Session State ..i came to know that it is done in three ways .. 1. via cookies 2. URL 3. client profiles.
Four ways. 4. Form data Cookies and Session variables are user specific, i.e. if the user has more than one window, they share the same state. Querystring and form data are window specific, i.e. if the user has more than one window, they have separate state. Cookies, querystring and form data are sent via the browser in plain text. Session variables never leave the server. Data that you put in cookies and session variables stays there. The querystring and form data has to be sent along from every page, or the data is lost.
Despite everything, the person most likely to be fooling you next is yourself.
Thank You for Replying, i will take care that whenever i post a question it will be in a good format ... Regards Sindhu Tiwari
its me sid