|
This post has nothing to do with ASP.NET.
However, why have you appended the .. to the $(SolutionDir) directory?
|
|
|
|
|
I have a C#.asp.net 2010 webforms application that I need to modify. I have C# desktop experience, but I do not have C#.asp.net 2010. *Note I have read of asp.net books to update my skills. I have a master page that has root-> root-> root-> root-> root-> at the bottom of that page. I know that is the master page since the area is gray and i can not click on the 'root' items. I know the 'root' items are probably changed in the update_panel of ajax since there is a script manager also used. However, I to not know how the 'root' items are changed?
However I still have a few questions:
1. How can I find what code applies to each one of the 5 roots? I look at the source code (HTML), but I can not tell what applies. I know the 5 'roots' are like 5 tabs in a desktop applicatiom. What I see is what thec webpage is setup for. I believe this content place holder 4.
2. What I am looking for is probably content placeholder 2 or content placeholder3. Can you tell me how to tie the designer/code with each of the conent placeholders?
3. Is there a way I can step through this code to see how the controls are all wired together? At least step through code to the point right before the html is rendered by the browser?
|
|
|
|
|
3. It depends what the control is. If it is not a custom control then you can only step through it so far. You can review it with tools such as Reflector.
2. By code I'll assume you mean markup. The masterpage will contain content placeholder controls with IDs. These IDs will correspond to the ContentPlaceHolderID attribute Content controls on the implementation page.
1. Look at the masterpage and see what control is being used and how it is configured
No comment
|
|
|
|
|
Dear Sir,
I am new to asp.net and sql server 2005. I am working on a multi level marketing website in asp.net. In this i had made a binary tree in sql server table. Now I have to write a query to access the record of particular node including its left and right child. Please help me out.....
|
|
|
|
|
Hi
I am hosting a website for my client developed in C# 3.5 framework. Application has all valid Urls generated. however this site was previously developed in PHP which allowed double quotes in Urls.
now within asp.net I am unable to handle double quotes requests in url from different search engines.
Can any one please help me out to handle double quote problems in url so it is redirected to any specific Url ?
details are
windows 2003 server with IIS 6
Dotnet Framework 3.5
Some sites adviced about changing the some registry and restarting machine but nothing helped.
is there any way to block or redirect those urls ?
Thanks in advance
Best Regards
Rizwan Bashir
|
|
|
|
|
|
This is my site and one of many urls, I dont have this deal on my website nor I did generated this Url but I do get this requests from different IP Addresses
http://www.nobrainerdeals.com/deal/Astar_32"_LCD_TV_Display_with_Stand/[^]
Rizwan Bashir
<a href="http://www.alm-soft.com/">ALM Soft</a>[<a href="http://www.alm-soft.com/" target="_blank" title="New Window">^</a>]
|
|
|
|
|
hiiiiiii to al one canl
any one can hep me that i wanted to set trigger in asp.net web page by sql server
how to call that trigger in web page
please help me to sort out this problem
rizvan sivally
|
|
|
|
|
|
as we call stored procedure in asp.net page same as how we call any trigger of sql in asp.net page
i created trigger but wanted to use that in application
Thanks for prompt reply
rizvan sivally
|
|
|
|
|
Dear I already said you can not call Trigger explicitly. Have you read provided link? Better to ask question you must read first about Triggers how it works and why it's required
Parwej Ahamad
|
|
|
|
|
my question is that how to use the trigger in asp.net application
meaning that path or connection string or any query to execute the trigger in web application
rizvan sivally
|
|
|
|
|
which type of trigger this is ? Lets say it is on update then update any record when you want it triggered
Rizwan Bashir
<a href="http://www.alm-soft.com/">ALM Soft</a>[<a href="http://www.alm-soft.com/" target="_blank" title="New Window">^</a>]
|
|
|
|
|
Sir i created trigger(insert,update,delete) as we can call stored procedure(insert,update,delete table)
but the question is how we use this trigger in web application as we created in sql server to fire them.
rizvan sivally
|
|
|
|
|
so your triggers are not Database oriented, basically a code in asp.net is required to be run lets say every one hour , if it is so then use Timer which will be run on background and wont require any one to browse the page to trigger it like window service.
check this for timer ( the last post on this page)http://forums.asp.net/t/1187287.aspx/1[^]
Rizwan Bashir
<a href="http://www.alm-soft.com/">ALM Soft</a>[<a href="http://www.alm-soft.com/" target="_blank" title="New Window">^</a>]
|
|
|
|
|
As the name suggests - 'Trigger', these triggers are automatically fired. And according to my knowledge, one cannot fire the trigger explicitly.
That means, they get automatically fired when the task for which they have been made occurs. i.e. when some data is inserted / updated / deleted in the table.
For eg. If you have made an insert trigger on a table, it will be fired only when some data is inserted in it..and so on. You don't have to call / fire these triggers in your code.
|
|
|
|
|
You do not need to use the triggers through ASP.Net. They will be automatically fired by SQL.
I quit being afraid when my first venture failed and the sky didn't fall down.
|
|
|
|
|
the next question is that
is that possible to restrict to insert,update and delete data by trigger in the database and in web application
if possible
then what will be query of the trigger
rizvan sivally
|
|
|
|
|
Yes, It is possible to restrict DML by triggers.
You said that you have already made triggers. Then you only have to edit them and add your logic for restricting some action. It must be in if-else construct. If the action is not valid according to your logic, then just add 'Rollback Transaction' in your if construct! And you're done!
You have just restricted the invalid DML!
Enjoy!
For further details, Visit this[^]
modified 26-Sep-11 11:20am.
|
|
|
|
|
|
|
Thanks alot sir
as we know what ever we put the message in the trigger it will show after action is fired in database.
now question is that is trigger also restrict any data to insert,delete or update in database as well as for webapplication
Thnaking you again
rizvan sivally
|
|
|
|
|
|
[]
May this link helps you.... 
|
|
|
|
|
Can we use AutoCompleteExtender inside ModalPopupExtender?
|
|
|
|