User Wafaa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:18:44Z http://stackoverflow.com/feeds/user/96942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/796657/multiple-result 0 multiple result Wafaa 2009-04-28T07:36:40Z 2009-10-14T22:00:01Z <p>I have multiple result set that return data form customer table(singlr record) and customer adresses(multiple records). when I retrive the data for first time it bring the correct data but when I update it and save the changes(Iam sure that the data are updated in database) it bring the old version for customer and the new data for customer addresses. I don't have any idea why is that</p> http://stackoverflow.com/questions/949048/paging-gridview 0 Paging Gridview Wafaa 2009-06-04T07:20:24Z 2009-10-06T00:00:01Z <p>I have a gridview with page size=4 what I need is how can i make for loop for all rows in grid view not just in the currnt page?</p> <p>thanks alot</p> http://stackoverflow.com/questions/1118295/confirm-message-in-asp-net 1 Confirm message in ASP.NET Wafaa 2009-07-13T08:35:35Z 2009-09-30T19:40:46Z <p>hello,</p> <p>I wrote this statment in my code:</p> <pre><code>Response.Write("&lt;script language=javascript&gt;confirm('The system not allow negative inventory,continue?');&lt;/script&gt;"); </code></pre> <p>how can I handel if the user clicked "Ok" or "Cancel" button?</p> http://stackoverflow.com/questions/823996/how-to-check-permissions-of-an-asp-net-role 0 How to check permissions of an ASP.NET Role Wafaa 2009-05-05T09:06:46Z 2009-09-29T22:00:01Z <p>how Ican use declarative security("[PrincipalPermissionAttribute(SecurityAction.Demand, Role = "")]) but I don't want to check role I need to check the permissions for that role? scince I have roles and permissions for each role how I can use declarative security for permissions?</p> <p>Thanks for help</p> http://stackoverflow.com/questions/1117956/confirm-message-at-run-time-in-asp-net 0 Confirm message at run time in asp.net Wafaa 2009-07-13T06:33:39Z 2009-09-07T15:38:30Z <p>Hello, I need to show confirm message box but after some calculations in code? how can I show confirm message at run time? thanks</p> http://stackoverflow.com/questions/1068631/validate-gridview 0 Validate Gridview Wafaa 2009-07-01T11:33:36Z 2009-08-01T10:00:02Z <p>hello, I have gridview with template fields(textbox,dropdown list,...) and I use required field validators for the textbox and dropdownlist where I make the validation on textchanged and dropselected index changed my problem is that the validation happend on all rows not just on the row where i change the text any idea?</p> <p>validation is going to be fired for all dropdowns residing into other rows. how can i orevent this?</p> <p>thanks</p> <p>this the code:</p> <pre><code> &lt;asp:GridView ID="uxCountSheetView" runat="server" AutoGenerateColumns="false" OnRowDataBound="uxCountSheetView_RowDataBound" AllowPaging="true" PageSize="15" OnPageIndexChanging="uxCountSheetView_PageIndexChanging" ShowFooter="true"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="Item"&gt; &lt;ItemTemplate&gt; &lt;asp:DropDownList ID="uxItems" runat="server" Width="100" CausesValidation="true" ValidationGroup="All" AutoPostBack="true" OnSelectedIndexChanged="uxItems_SelectedIndexChanged"&gt;&lt;/asp:DropDownList&gt; &lt;asp:RequiredFieldValidator id="RequiredFieldValidator3" ControlToValidate="uxItems" Display="Static" ValidationGroup="All" InitialValue="" Width="100%" runat="server"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField HeaderText="AfterQuantity"&gt; &lt;ItemTemplate&gt; &lt;asp:TextBox ID="uxAfterQuantity" ValidationGroup="All" CausesValidation="true" OnTextChanged="uxAfterQuantity_TextChanged" AutoPostBack="true" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;cc1:FilteredTextBoxExtender ID="uxFilterAfterQuantity" runat="server" FilterType="Custom, Numbers" TargetControlID="uxAfterQuantity" ValidChars="."&gt;&lt;/cc1:FilteredTextBoxExtender&gt; &lt;asp:RequiredFieldValidator runat="server" id="RequiredFieldValidator6"&gt;&lt;/asp:RequiredFieldValidator&gt; ControlToValidate="uxAfterQuantity" Display="Static" ValidationGroup="All" InitialValue="" Width="100%" runat="server"&gt;&lt;/ItemTemplate&gt;&lt;/asp:TemplateField&gt;&lt;asp:TemplateField HeaderText="Difference"&gt;&lt;/Columns&gt;&lt;/asp:GridView&gt; </code></pre> http://stackoverflow.com/questions/1199875/set-foreign-key-value-in-business-entity-data-model 0 Set foreign key value in business entity data model Wafaa 2009-07-29T12:25:31Z 2009-07-29T12:32:00Z <p>hello,</p> <p>I have table SublocationTbl that have SubLocationName and LocationId(this field is foreign key from table LocationTbl), and I have business entity data model I know that the foreign key dosen't appear in the business entity my problrm is: how can I set the value of locationId when I need to add new subLocation?</p> http://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model 1 Foreign Key in Entity Data Model Wafaa 2009-07-28T07:59:17Z 2009-07-28T21:42:05Z <p>hello, I use Entity Data Model but I have aproblem: If a table e.g Customers have categoryId(foreign key from table category) it is not appear in cutomers entity???? so how can i retrive this value or set it?</p> http://stackoverflow.com/questions/1187965/update-data-model-business-entity 0 Update Data Model Business Entity Wafaa 2009-07-27T12:43:57Z 2009-07-27T12:53:05Z <p>hello,</p> <p>I have web application where Iam using linq to business entites i have business data model.</p> <p>the problem is :</p> <p>I have table with one column that it dosen't allow null value, when I try to update this table the folloeing error arise: error The property 'e.g Carrier' is part of the object's key information and cannot be modified</p> <p>what I can do?</p> http://stackoverflow.com/questions/824215/override-principalpermissionattribute-securityaction-demand-method 0 override PrincipalPermissionAttribute SecurityAction.Demand method Wafaa 2009-05-05T10:13:08Z 2009-07-26T20:00:02Z <p>how can I override PrincipalPermissionAttribute SecurityAction.Demand method?</p> http://stackoverflow.com/questions/1123737/postbacktrigger-for-button-in-gridview -1 PostBackTrigger for button in gridview Wafaa 2009-07-14T06:22:17Z 2009-07-22T10:07:57Z <p>how can I make PostBackTrigger for button template field in grid view? when I put the following code it give that control can't be found in update panel:</p> <p></p> http://stackoverflow.com/questions/1135776/gridview-in-asp-net 1 GridView in ASP.NET Wafaa 2009-07-16T06:32:17Z 2009-07-16T07:05:47Z <p>I would like to use a TextBoxor Label (item) inside of a Gridview. When field is clicked, I would like to display list of records that contain: - Item Name - Description - Price - Image - Add Button</p> http://stackoverflow.com/questions/1131540/gridview-dropdown-extender 0 gridview dropdown extender Wafaa 2009-07-15T13:51:03Z 2009-07-15T14:07:07Z <p>hello, I have gridview with TextBox Template field and DropDownExtender so when user click on the textbox another gridview will appear that contain List of items, on row data bound for first gridview i give the data source for the second gridview. my problem is that: for few second when the page load the second gridview(in the extender ) appears in each row of the first gridview then they dissapear and work correctly any idea?<br /> thanks</p> <pre><code>&lt;cc1:DropDownExtender ID="uxItemExtender" runat="server" DropDownControlID="uxItemContainer" TargetControlID="uxItems"&gt; &lt;/cc1:DropDownExtender&gt; &lt;asp:Panel BackColor="AliceBlue" ID="uxItemContainer" runat="server" ScrollBars="Both" Height="400" Width="200"&gt; &lt;asp:GridView ID="uxItemsView" runat="server" Font-Size="Small" AutoGenerateColumns="false" OnRowDataBound="uxItemsView_RowDataBound"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="Item Details"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="uxItemNameLbl" Text="Name :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemName" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Label ID="uxItemDescriptionLbl" Text="Description :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemDescription" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Label ID="uxItemPriceLbl" Text="Price :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemPrice" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Button ID="uxSelectItem" runat="server" Text="Add Item" OnClick="uxSelectItem_Click" /&gt;&lt;br /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField HeaderText="Picture"&gt; &lt;ItemTemplate&gt; &lt;asp:Image ID="uxItemImage" runat="server" Width="45" Height="50" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;/asp:Panel&gt; &lt;/asp:TemplateField&gt; </code></pre> http://stackoverflow.com/questions/1131012/gridview-whith-dropdown-extender 0 gridview whith dropdown extender Wafaa 2009-07-15T12:09:22Z 2009-07-15T13:30:00Z <p>hello, I have gridview with TextBox Template field and DropDownExtender so when user click on the textbox another gridview will appear tha contain List of items and button to add the item to the first gridview. my qusetion is: how can i in the event of button click(which is in the extender gridview) to get the row index of the first gridview(which contain the textbox)?</p> <p>thanks</p> <p> <br /> </p> <pre><code> &lt;cc1:DropDownExtender ID="uxItemExtender" runat="server" DropDownControlID="uxItemContainer" TargetControlID="uxItems"&gt;&lt;/cc1:DropDownExtender&gt; &lt;asp:Panel BackColor="AliceBlue" ID="uxItemContainer" runat="server" ScrollBars="Both" Height="400" Width="200"&gt; &lt;asp:GridView ID="uxItemsView" runat="server" Font-Size="Small" AutoGenerateColumns="false" OnRowDataBound="uxItemsView_RowDataBound"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="Item Details"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="uxItemNameLbl" Text="Name :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemName" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Label ID="uxItemDescriptionLbl" Text="Description :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemDescription" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Label ID="uxItemPriceLbl" Text="Price :" runat="server"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="uxItemPrice" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt; &lt;asp:Button ID="uxSelectItem" runat="server" Text="Add Item" OnClick="uxSelectItem_Click" /&gt;&lt;br /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField HeaderText="Picture"&gt; &lt;ItemTemplate&gt; &lt;asp:Image ID="uxItemImage" runat="server" Width="45" Height="50" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;/asp:Panel&gt; &lt;/asp:TemplateField&gt; </code></pre> <p> </p> http://stackoverflow.com/questions/961609/checkboxlist-column-gridview 0 checkboxlist column gridview Wafaa 2009-06-07T10:01:30Z 2009-07-15T05:56:57Z <p>I have gridview I have column that should be checkboxlist like dropdownlist column but how can I let the list appear when click in the column ?I don't want the list to appear unless the user want to check some items</p> <p>thanks alot</p> http://stackoverflow.com/questions/1119018/get-element-by-id-in-javascript 3 Get element by ID in JavaScript Wafaa 2009-07-13T11:50:39Z 2009-07-13T13:15:12Z <p>I use JavaScript and this error appears for me during execution:</p> <pre><code>Microsoft JScript runtime error: 'document.getElementById(...)' is null or not an object </code></pre> <p>this my code:</p> <pre><code>&lt;asp:Content ID="content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"&gt; &lt;script language="javascript" type="text/javascript"&gt; function ConfirmTransfere() { if (confirm("Syatem not allow negative inventory, would you like to continue ?") == true) { document.getElementById("btnAlelrt").click(); } } &lt;/script&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt; &lt;/asp:ScriptManager&gt; &lt;asp:UpdatePanel ID="uxContainer" runat="server"&gt; &lt;ContentTemplate&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:Button ID="uxTransfer" runat="server" Text="Transfer" OnClick="uxTransfer_Click" /&gt; &lt;asp:Button ID="btnAlelrt" runat="server" Text="GetDetails" OnClick="btnAlelrt_Click" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="uxTransfer" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/802654/asp-net-forms-authentication-with-active-directory-problem 0 ASP Net - Forms Authentication with Active Directory Problem Wafaa 2009-04-29T14:35:52Z 2009-07-09T07:57:25Z <p>I have an error...</p> <p>The container specified in the connection string does not exist</p> <p>Basically, I am using Active Directory authentication in ASP.NET.</p> <p>I have set up my connection string. </p> <p>I am still very new to AD.</p> <p>I appritate any help thanks</p> http://stackoverflow.com/questions/1084225/maskededitextender-in-asp-net 0 MaskedEditExtender in asp.net Wafaa 2009-07-05T15:00:28Z 2009-07-06T07:06:23Z <p>How can I useMaskedEditExtender for textbox that should accept address of website? thanks</p> http://stackoverflow.com/questions/1072740/required-field-validator-for-gridview-column 0 Required Field Validator for gridview Column Wafaa 2009-07-02T06:05:17Z 2009-07-02T06:11:15Z <p>I have a gridview with a textbox template field and I have a required field validator for that textbox. The gridview contains 15 rows, with just the first enabled and the rest are not enabled .</p> <p>How can I make the validation appear when the save button is clicked, just on the enabled row and not for all rows?</p> <p>Thanks</p> http://stackoverflow.com/questions/949708/tab-control-in-asp-net 0 Tab Control In Asp.net Wafaa 2009-06-04T10:24:43Z 2009-06-04T10:24:43Z <p>I use ajax tab control in my website but the problem is when I fire a poastback event go back to first tab not in the current tab index how i can solve this problem?</p> <p>thanks for your time.</p> http://stackoverflow.com/questions/934495/combobox-column-gridview 0 combobox column gridview Wafaa 2009-06-01T11:44:43Z 2009-06-01T12:11:23Z <p>hello, I need to aske I have gridview with combobox template column and its fill with items . when select index changed i need to set description value in onther cell but I couldn't get the index of the gridview row? any help</p> http://stackoverflow.com/questions/914201/master-page 1 Master Page Wafaa 2009-05-27T06:08:24Z 2009-05-27T07:07:41Z <p>I need to ask if I have master page that contain button as an example then I add new webform(default) and I assign that master page as default form master page.the question is can I change the text of the button in default page code?</p> http://stackoverflow.com/questions/910653/what-is-the-best-use-cache-object-or-static-variabels 0 what is the best use Cache Object or static variabels Wafaa 2009-05-26T13:23:20Z 2009-05-26T13:42:20Z <p>I need to store large data in my website but I'm not sure what is the best to use cache objec or store the data in static variabels in the master page?</p> <p>thanks alot</p> http://stackoverflow.com/questions/906125/collapsiblepanelextender 0 CollapsiblePanelExtender Wafaa 2009-05-25T10:01:43Z 2009-05-25T10:01:43Z <p>I have two panels and I use CollapsiblePanelExtender control to collaps and expand one of them.what I need is to change the size of the second control when the first is collapsed . how I can do that?</p> http://stackoverflow.com/questions/862333/asp-net-chartarea 0 Asp.net ChartArea Wafaa 2009-05-14T09:07:06Z 2009-05-14T09:07:06Z <p>how can I can make reference to ChartArea in class not in web page? hint:using System.Web.UI.DataVisualization.Charting;</p> http://stackoverflow.com/questions/852446/back-button-in-web-application 1 Back button in web application Wafaa 2009-05-12T12:15:38Z 2009-05-12T12:32:33Z <p>I have web application contain more than one page. I need to guarantee when I click Back in browser it execute the page-load event because in last page when I click bake it bring the previous page but it doesn’t execute page load and that cause problems. I appreciate any help</p> http://stackoverflow.com/questions/776426/asp-net-mvc-and-linq-general-questions/796648#796648 0 Answer by Wafaa for ASP.NET MVC And LINQ General Questions Wafaa 2009-04-28T07:33:40Z 2009-04-28T07:33:40Z <p>I have multiple result set that return data form customer table(singlr record) and customer adresses(multiple records). when I retrive the data for first time it bring the correcy data but when I update it and save the changes(Iam sure that the data are updated in database) it bring the old version for customer and the new data for customer addresses. I don't have any idea why is that</p> http://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model/1193065#1193065 Comment by Wafaa on Foreign Key in Entity Data Model Wafaa 2009-07-29T14:22:52Z 2009-07-29T14:22:52Z If I need to add new customer how can I set the value categoryId( foreign key column? http://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model/1193065#1193065 Comment by Wafaa on Foreign Key in Entity Data Model Wafaa 2009-07-29T14:20:44Z 2009-07-29T14:20:44Z the upcoming and not-yet-released EF v2 (or EF 4) is it avaliable now? http://stackoverflow.com/questions/1199875/set-foreign-key-value-in-business-entity-data-model/1199913#1199913 Comment by Wafaa on Set foreign key value in business entity data model Wafaa 2009-07-29T12:53:28Z 2009-07-29T12:53:28Z The problem is that locationId is foreign key and it dosen't appear in sublocations business entity so myNewSubLocation.LocationID not exist http://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model/1193065#1193065 Comment by Wafaa on Foreign Key in Entity Data Model Wafaa 2009-07-28T11:16:03Z 2009-07-28T11:16:03Z ok but I have another foreign key(category parentId) in category table(parentId foreign key from categoryid in the same table) how can I get this field? http://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model/1192562#1192562 Comment by Wafaa on Foreign Key in Entity Data Model Wafaa 2009-07-28T11:13:15Z 2009-07-28T11:13:15Z ok but I have another foreign key(category parentId) in category table(parentId foreign key from categoryid in the same table) how can I get this field? http://stackoverflow.com/questions/1135776/gridview-in-asp-net/1135802#1135802 Comment by Wafaa on GridView in ASP.NET Wafaa 2009-07-16T06:57:43Z 2009-07-16T06:57:43Z I looked at it in fact that is not what I need. I don't want to filter the items list what I need is when user click on item column(it could be textbox or label template field) a list of items appear and the user can choos from that list http://stackoverflow.com/questions/1135776/gridview-in-asp-net/1135802#1135802 Comment by Wafaa on GridView in ASP.NET Wafaa 2009-07-16T06:48:12Z 2009-07-16T06:48:12Z but in this way the items list will appear when I load the first gridview is that correct? what I need is th view the items list when the user click on the item column in first gridview http://stackoverflow.com/questions/1118295/confirm-message-in-asp-net/1118319#1118319 Comment by Wafaa on Confirm message in ASP.NET Wafaa 2009-07-13T08:54:53Z 2009-07-13T08:54:53Z ok but i don't want the confirm to appear at button click, because in button click I do some calculation the I decide if I want to show the confirm message or not http://stackoverflow.com/questions/910653/what-is-the-best-use-cache-object-or-static-variabels/910668#910668 Comment by Wafaa on what is the best use Cache Object or static variabels Wafaa 2009-05-26T14:05:30Z 2009-05-26T14:05:30Z but application data is used for small amount of data and I need to store large data e.g (Lisa&lt;Business Entity)... Thanks http://stackoverflow.com/questions/852446/back-button-in-web-application/852503#852503 Comment by Wafaa on Back button in web application Wafaa 2009-05-12T12:55:49Z 2009-05-12T12:55:49Z I add this Line Response.Cache.SetCacheability(HttpCacheability.NoCache); and tha back works correctly between pages but when I raise event in the same page and then click back it give me message &quot; expired web page&quot; http://stackoverflow.com/questions/823996/how-to-check-permissions-of-an-asp-net-role/824006#824006 Comment by Wafaa on How to check permissions of an ASP.NET Role Wafaa 2009-05-05T09:21:51Z 2009-05-05T09:21:51Z if I have database that contain roles table and permissions table what I can do to check the permissions for user role?