User Wafaa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:18:44Zhttp://stackoverflow.com/feeds/user/96942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796657/multiple-result0multiple resultWafaa2009-04-28T07:36:40Z2009-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-gridview0Paging GridviewWafaa2009-06-04T07:20:24Z2009-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-net1Confirm message in ASP.NETWafaa2009-07-13T08:35:35Z2009-09-30T19:40:46Z
<p>hello,</p>
<p>I wrote this statment in my code:</p>
<pre><code>Response.Write("<script language=javascript>confirm('The system not allow negative inventory,continue?');</script>");
</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-role0How to check permissions of an ASP.NET RoleWafaa2009-05-05T09:06:46Z2009-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-net0Confirm message at run time in asp.netWafaa2009-07-13T06:33:39Z2009-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-gridview0Validate GridviewWafaa2009-07-01T11:33:36Z2009-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> <asp:GridView ID="uxCountSheetView" runat="server" AutoGenerateColumns="false" OnRowDataBound="uxCountSheetView_RowDataBound"
AllowPaging="true" PageSize="15" OnPageIndexChanging="uxCountSheetView_PageIndexChanging" ShowFooter="true">
<Columns>
<asp:TemplateField HeaderText="Item">
<ItemTemplate>
<asp:DropDownList ID="uxItems" runat="server" Width="100" CausesValidation="true" ValidationGroup="All" AutoPostBack="true" OnSelectedIndexChanged="uxItems_SelectedIndexChanged"></asp:DropDownList>
<asp:RequiredFieldValidator id="RequiredFieldValidator3"
ControlToValidate="uxItems" Display="Static" ValidationGroup="All" InitialValue="" Width="100%" runat="server">*</asp:RequiredFieldValidator> </ItemTemplate> </asp:TemplateField>
<asp:TemplateField HeaderText="AfterQuantity">
<ItemTemplate>
<asp:TextBox ID="uxAfterQuantity" ValidationGroup="All" CausesValidation="true" OnTextChanged="uxAfterQuantity_TextChanged" AutoPostBack="true" runat="server"></asp:TextBox>
<cc1:FilteredTextBoxExtender ID="uxFilterAfterQuantity" runat="server" FilterType="Custom, Numbers"
TargetControlID="uxAfterQuantity" ValidChars="."></cc1:FilteredTextBoxExtender>
<asp:RequiredFieldValidator runat="server" id="RequiredFieldValidator6"></asp:RequiredFieldValidator>
ControlToValidate="uxAfterQuantity"
Display="Static" ValidationGroup="All"
InitialValue="" Width="100%" runat="server"></ItemTemplate></asp:TemplateField><asp:TemplateField HeaderText="Difference"></Columns></asp:GridView>
</code></pre>
http://stackoverflow.com/questions/1199875/set-foreign-key-value-in-business-entity-data-model0Set foreign key value in business entity data modelWafaa2009-07-29T12:25:31Z2009-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-model1Foreign Key in Entity Data Model Wafaa2009-07-28T07:59:17Z2009-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-entity0Update Data Model Business EntityWafaa2009-07-27T12:43:57Z2009-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-method0override PrincipalPermissionAttribute SecurityAction.Demand methodWafaa2009-05-05T10:13:08Z2009-07-26T20:00:02Z
<p>how can I override PrincipalPermissionAttribute SecurityAction.Demand method?</p>
http://stackoverflow.com/questions/1123737/postbacktrigger-for-button-in-gridview-1PostBackTrigger for button in gridviewWafaa2009-07-14T06:22:17Z2009-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-net1GridView in ASP.NETWafaa2009-07-16T06:32:17Z2009-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-extender0gridview dropdown extenderWafaa2009-07-15T13:51:03Z2009-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><cc1:DropDownExtender ID="uxItemExtender" runat="server" DropDownControlID="uxItemContainer" TargetControlID="uxItems">
</cc1:DropDownExtender>
<asp:Panel BackColor="AliceBlue" ID="uxItemContainer" runat="server" ScrollBars="Both" Height="400" Width="200">
<asp:GridView ID="uxItemsView" runat="server" Font-Size="Small" AutoGenerateColumns="false" OnRowDataBound="uxItemsView_RowDataBound"> <Columns>
<asp:TemplateField HeaderText="Item Details">
<ItemTemplate>
<asp:Label ID="uxItemNameLbl" Text="Name :" runat="server"></asp:Label>
<asp:Label ID="uxItemName" runat="server"></asp:Label><br />
<asp:Label ID="uxItemDescriptionLbl" Text="Description :" runat="server"></asp:Label>
<asp:Label ID="uxItemDescription" runat="server"></asp:Label><br />
<asp:Label ID="uxItemPriceLbl" Text="Price :" runat="server"></asp:Label>
<asp:Label ID="uxItemPrice" runat="server"></asp:Label><br />
<asp:Button ID="uxSelectItem" runat="server" Text="Add Item" OnClick="uxSelectItem_Click" /><br />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Picture">
<ItemTemplate>
<asp:Image ID="uxItemImage" runat="server" Width="45" Height="50" /> </ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</asp:Panel>
</asp:TemplateField>
</code></pre>
http://stackoverflow.com/questions/1131012/gridview-whith-dropdown-extender0gridview whith dropdown extenderWafaa2009-07-15T12:09:22Z2009-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> <cc1:DropDownExtender ID="uxItemExtender" runat="server" DropDownControlID="uxItemContainer" TargetControlID="uxItems"></cc1:DropDownExtender>
<asp:Panel BackColor="AliceBlue" ID="uxItemContainer" runat="server" ScrollBars="Both" Height="400" Width="200">
<asp:GridView ID="uxItemsView" runat="server" Font-Size="Small" AutoGenerateColumns="false" OnRowDataBound="uxItemsView_RowDataBound">
<Columns>
<asp:TemplateField HeaderText="Item Details">
<ItemTemplate>
<asp:Label ID="uxItemNameLbl" Text="Name :" runat="server"></asp:Label>
<asp:Label ID="uxItemName" runat="server"></asp:Label><br />
<asp:Label ID="uxItemDescriptionLbl" Text="Description :" runat="server"></asp:Label>
<asp:Label ID="uxItemDescription" runat="server"></asp:Label><br />
<asp:Label ID="uxItemPriceLbl" Text="Price :" runat="server"></asp:Label>
<asp:Label ID="uxItemPrice" runat="server"></asp:Label><br />
<asp:Button ID="uxSelectItem" runat="server" Text="Add Item" OnClick="uxSelectItem_Click" /><br />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Picture">
<ItemTemplate>
<asp:Image ID="uxItemImage" runat="server" Width="45" Height="50" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</asp:Panel>
</asp:TemplateField>
</code></pre>
<p>
</p>
http://stackoverflow.com/questions/961609/checkboxlist-column-gridview0checkboxlist column gridviewWafaa2009-06-07T10:01:30Z2009-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-javascript3Get element by ID in JavaScriptWafaa2009-07-13T11:50:39Z2009-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><asp:Content ID="content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<script language="javascript" type="text/javascript">
function ConfirmTransfere() {
if (confirm("Syatem not allow negative inventory, would you like to continue ?") == true) {
document.getElementById("btnAlelrt").click();
}
}
</script>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="uxContainer" runat="server">
<ContentTemplate>
<table>
<tr>
<td>
<asp:Button ID="uxTransfer" runat="server" Text="Transfer" OnClick="uxTransfer_Click" />
<asp:Button ID="btnAlelrt" runat="server" Text="GetDetails" OnClick="btnAlelrt_Click" />
</td>
</tr>
</table>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="uxTransfer" />
</Triggers>
</asp:UpdatePanel>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/802654/asp-net-forms-authentication-with-active-directory-problem0ASP Net - Forms Authentication with Active Directory ProblemWafaa2009-04-29T14:35:52Z2009-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-net0MaskedEditExtender in asp.netWafaa2009-07-05T15:00:28Z2009-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-column0Required Field Validator for gridview ColumnWafaa2009-07-02T06:05:17Z2009-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-net0Tab Control In Asp.netWafaa2009-06-04T10:24:43Z2009-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-gridview0combobox column gridviewWafaa2009-06-01T11:44:43Z2009-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-page1Master PageWafaa2009-05-27T06:08:24Z2009-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-variabels0what is the best use Cache Object or static variabelsWafaa2009-05-26T13:23:20Z2009-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/collapsiblepanelextender0CollapsiblePanelExtenderWafaa2009-05-25T10:01:43Z2009-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-chartarea0Asp.net ChartAreaWafaa2009-05-14T09:07:06Z2009-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-application1Back button in web applicationWafaa2009-05-12T12:15:38Z2009-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#7966480Answer by Wafaa for ASP.NET MVC And LINQ General QuestionsWafaa2009-04-28T07:33:40Z2009-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#1193065Comment by Wafaa on Foreign Key in Entity Data Model Wafaa2009-07-29T14:22:52Z2009-07-29T14:22:52ZIf 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#1193065Comment by Wafaa on Foreign Key in Entity Data Model Wafaa2009-07-29T14:20:44Z2009-07-29T14:20:44Zthe 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#1199913Comment by Wafaa on Set foreign key value in business entity data modelWafaa2009-07-29T12:53:28Z2009-07-29T12:53:28ZThe problem is that locationId is foreign key and it dosen't appear in sublocations business entity so myNewSubLocation.LocationID not existhttp://stackoverflow.com/questions/1192531/foreign-key-in-entity-data-model/1193065#1193065Comment by Wafaa on Foreign Key in Entity Data Model Wafaa2009-07-28T11:16:03Z2009-07-28T11:16:03Zok 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#1192562Comment by Wafaa on Foreign Key in Entity Data Model Wafaa2009-07-28T11:13:15Z2009-07-28T11:13:15Zok 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#1135802Comment by Wafaa on GridView in ASP.NETWafaa2009-07-16T06:57:43Z2009-07-16T06:57:43ZI 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 listhttp://stackoverflow.com/questions/1135776/gridview-in-asp-net/1135802#1135802Comment by Wafaa on GridView in ASP.NETWafaa2009-07-16T06:48:12Z2009-07-16T06:48:12Zbut 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 gridviewhttp://stackoverflow.com/questions/1118295/confirm-message-in-asp-net/1118319#1118319Comment by Wafaa on Confirm message in ASP.NETWafaa2009-07-13T08:54:53Z2009-07-13T08:54:53Zok 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 nothttp://stackoverflow.com/questions/910653/what-is-the-best-use-cache-object-or-static-variabels/910668#910668Comment by Wafaa on what is the best use Cache Object or static variabelsWafaa2009-05-26T14:05:30Z2009-05-26T14:05:30Zbut application data is used for small amount of data and I need to store large data e.g (Lisa<Business Entity)...
Thankshttp://stackoverflow.com/questions/852446/back-button-in-web-application/852503#852503Comment by Wafaa on Back button in web applicationWafaa2009-05-12T12:55:49Z2009-05-12T12:55:49ZI 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 " expired web page"http://stackoverflow.com/questions/823996/how-to-check-permissions-of-an-asp-net-role/824006#824006Comment by Wafaa on How to check permissions of an ASP.NET RoleWafaa2009-05-05T09:21:51Z2009-05-05T09:21:51Zif I have database that contain roles table and permissions table what I can do to check the permissions for user role?