Hi, i want to build a rights based data base driven menu bar using asp.net menu control. There are three user roles; super admin, admin & user. super admin is having all view, add, edit & delete rights though user is having only view & edit right. can anybody tell me how to create (and maintain & use) table for this or other possible scenarios.
Spurple
Posts
-
rights based database driven menu -
css problemim having drop down style menubar designed using css. problem is when page loads first time 2 or 3 menu item get shifted in 2nd row.when i refresh page, everything get settle down properly. i checked css & html code of both before error & after error. it is same. can anybody help me with this please??
-
css problemHi,I m having a menubar with 7 menu,designed with css. problem is when form loads first time,3 menu get shifted in 2nd row. but when i refresh page, all 7 menu display in one row which is right. can anybody guess what is the problem?
-
how to convert date into english wordshi, i want to convert a date selected from calender control into english words. e.g 11/01/1948 to-- eleven january nineteen fourty eigth. can anybody help!
-
sql server 2005 installationok, thank u for replying sir! could u plz tell me any article to know more abt this!
-
sql server 2005 installationHi, I have install sql server 2005 on server. i can access server from client machine. but the problem is when i try to access client from server,its not connecting. am i missing some setting during installation? what could be the reason for this? plz guide!
-
bind css to web user controlcan anybody tell me how to bind css file to web user control! as if im using master page,i can bind css file but i want to know if there is any way to add tag for css in web user control!
-
Reading word document in asp.net 1.1hi, Im trying to read word document located at client machine in asp.net 1.1 can anybody help! thanks in advance!
-
Reading word document in asp.nethi all, Im trying to read word document in asp.net 1.1 with following code. added required ddls too.(i.e Microsoft Office 10.0 Object Library,Microsoft Word 11.0 Object Library) but it is throwing error {Access is denied} plz help! thanks in advance! Code: Microsoft.Office.Interop.Word.ApplicationClass obj_app=new Microsoft.Office.Interop.Word.ApplicationClass(); Microsoft.Office.Interop.Word.Document obj_doc=new Microsoft.Office.Interop.Word.Document(); object readOnly = false; object isVisible = true; object missing = System.Reflection.Missing.Value; object filepath=_FilePath; obj_doc=obj_app.Documents.Open(ref filepath, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref isVisible, ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing); obj_doc.Select(); string m_Content=""; m_Content=obj_app.Selection.FormattedText.Text; obj_doc.Close(ref missing,ref missing,ref missing); obj_app.Quit(ref missing, ref missing, ref missing); Response.Write(m_Content);